ocaml命令行找不到“topfind”

时间:2017-11-27 10:10:30

标签: ocaml opam ocaml-toplevel

我已安装opam,运行opam init,运行opam switch 4.06.0,在4.06.0内创建~/.opam目录,运行“eval opam confing env “将$OCAML_TOPLEVEL_PATH导出为~/.opam/4.06.0/lib/toplevel等等,在启动时ocaml我感到害怕:

$ ocaml
        OCaml version 4.06.0

Cannot find file topfind.
Unknown directive `camlp4o'.
# 

我看过thisthis这两个问题都没有解决我的问题而且我的智慧结束了(第一次设置OCaml)。这是我的~/.ocamlinit

(* Added by OPAM. *)
let () =
  try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH")
  with Not_found -> ()
;;
#use "topfind"
#camlp4o
#thread
#require "core.top"
#require "core.syntax"

编辑:看起来我没有安装core,安装core解决了这个问题,但现在在我获得的一系列导入诊断中:

Exception:
Invalid_argument
 "The ocamltoplevel.cma library from compiler-libs cannot be loaded inside the OCaml toplevel".

然后再往下走一点:

Raised at file "pervasives.ml", line 33, characters 25-45
Called from file "toplevel/toploop.ml", line 468, characters 4-128
Called from file "toplevel/topdirs.ml", line 144, characters 10-51
    Camlp4 Parsing version 4.06.0

1 个答案:

答案 0 :(得分:5)

你应该运行

eval `opam config env`

注意反引号。它们通常位于大多数现代键盘上的键1的左侧。该命令不应输出任何内容,如果您看到任何输出,则表示您正在错误地运行它。每次启动新shell时都必须运行此命令来激活opam安装(除非您将此命令放在shell初始化脚本中,如.bashrc

如果问题仍然存在,请确保您已安装ocamlfind软件包

opam install ocamlfind