김윤승
가입: 2014년 9월 1일 올린 글: 452 위치: 302동 312-2호
|
올려짐: 2014년11월20일 15:03 주제: How to get OCaml 4.01 for Linux users |
|
|
If your OS doesn't provide OCaml 4.01 version, then you can choose one of these options:
1. Just use the provided version.
If you don't use uncommon features or libraries of OCaml, there will be no problems. However, we are not sure until your homework is graded.
2. Install OPAM
OPAM is a package manager for OCaml. Follow this(http://opam.ocaml.org/doc/Install.html) to install it, and after that, type these lines at the terminal :
코드: | opam init
eval `opam config env` (or eval $(opam config env) )
opam switch 4.01.0
|
|
|