Skip to content
Liang Wang edited this page Aug 1, 2017 · 17 revisions

#0 How to quickly try out the latest build?

This can be achieved by simply pulling Owl's docker image.

docker pull ryanrhymes/owl
docker run -t -i ryanrhymes/owl

If you want to run Owl on different platforms such as ARM, please refer here for more details.

#1 How to make toplevel automatically load Owl when it starts?

You can edit the .ocamlinit file in your home directory by adding the following lines.

#use "topfind"
#require "owl"
open Owl

If you don't want to open Owl module, please remove the open Owl. If you use utop rather than OCaml's default toplevel, remove the redundant #use "topfind".