Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
# open Std;; Characters 0-8: open Std;; ^^^^^^^^ Error: Unbound module Std
在ocaml解释器中运行。我以前安装过ocaml-extlib-devel和ocaml-extlib. 我还需要做什么才能安装模块?
ocaml
ocaml-extlib-devel
ocaml-extlib
(我正在研究 RedHat Linux,FC-18)。
你需要做的是:
#use "topfind";; #require "extlib";;
#除了提示之外,您还需要键入这些,因为这些是顶级指令。他们使用findlib也提供该ocamlfind工具的库,并且可能已安装在您的 OCaml 环境中(否则您应该安装它)。它知道在你的文件系统中哪里可以找到 ocaml 包。
#
findlib
ocamlfind