Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OPAM package not running

Tags:

ocaml

opam

I've installed OPAM and run the initialization and updated my .bashrc code too. I then installed the ocamlfind package, which went successfully. But when I try

#use "topfind";;

I get the following

Cannot find file topfind

I'm running ocaml 4.00.1 built from source on Opensuse 12.2.

like image 325
Jatajuuf Avatar asked Feb 07 '13 13:02

Jatajuuf


3 Answers

First, you need to export the right environment variables by doing:

eval `opam config env`

To be more effective, you should put that line in your ~/.profile (or ~/.bashrc).

Then, if you are using the system compiler, you can add these lines to your ~/.ocamlinit:

let () =
  try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH")
  with Not_found -> ()

We are working on improving this process before releasing 1.0.

like image 197
Thomas Avatar answered Nov 05 '22 23:11

Thomas


If $OCAML_TOPLEVEL_PATH is not defined, you have to defined it:

export OCAML_TOPLEVEL_PATH=/home/%user%/.opam/%version%/lib/toplevel

Don't forget to change %user% and your compiler %version%

Check this issue on the opam bugtracker.

like image 4
Çağdaş Bozman Avatar answered Nov 06 '22 00:11

Çağdaş Bozman


What if you start toplevel as

rlwrap ocaml -I "$OCAML_TOPLEVEL_PATH"

You can also try alternative toplevel: utop (it exists in OPAM)

like image 1
Stas Avatar answered Nov 05 '22 23:11

Stas