我正在尝试在 MacOS 下进行非常基本的 OPAM 安装。使用 macports 我安装了以下软件包:
- 奥帕姆@1.2.0
- ocaml-findlib @1.5.5
- ocaml-camlp4 @4.02.0.1_1
当我这样做时opam init
(不是以root身份,因为我只需要一个用户)。
opam switch
显示我正在使用系统编译器:
system C system 系统编译器 (4.02.1)
然后我尝试通过 opam 安装“lwt”,它中途失败并出现错误:
# ocamlfind: Package `camlp4' not found
# W: Failure("Command ''/Users/lord/.opam/system/bin/ocamlfind' query -format %d camlp4 > '/var/folders/hh/h6kt24208xj44z0059_xd9rh0000gn/T/oasis-ca8248.txt'' terminated with error code 2")
这是我的opam list
:
# Installed packages for system:
base-bigarray base Bigarray library distributed with the OCaml compil
base-threads base Threads library distributed with the OCaml compile
base-unix base Unix library distributed with the OCaml compiler
camlp4 4.02.1+system Camlp4 is a system for writing extensible parsers
ocamlfind 1.5.5 A library manager for OCaml
我注意到它有自己的 ocamlfind,而不是系统一。也许这就是导致错误的原因:
$ /Users/lord/.opam/system/bin/ocamlfind query -format %d camlp4
ocamlfind: Package `camlp4' not found
$ /opt/local/bin/ocamlfind query -format %d camlp4
/opt/local/lib/ocaml/camlp4
我在通过 OPAM 安装 OCAML 编译器和 CAMLP 之前尝试过,在这种情况下它可以工作,但让我感到困扰的是我有两个相同版本的编译器安装。如果可能,我宁愿使用系统 OCAML 编译器和 CAMLP。