OPAM package not running

痴心易碎 提交于 2019-11-28 07:55:26

问题


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.


回答1:


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.




回答2:


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.




回答3:


What if you start toplevel as

rlwrap ocaml -I "$OCAML_TOPLEVEL_PATH"

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



来源:https://stackoverflow.com/questions/14751914/opam-package-not-running

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!