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

#0 How to make utop automatically load Owl when it starts?

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

#require "owl"
open Owl

If you don't want to open the module, please remove the open Owl. If you use OCaml's default toplevel, add the following lines to .ocamlinit.

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