🐪

Ocamlをインストールした

2024/12/17に公開

プログラミングの基礎でOcamlに入門するためにWSL2にOcamlをインストールした。

1.OPAMをインストール
2. OPAM初期化
3.vscodeで開発するのに必要なもろもろインストール

OPAMインストール

OPAMはOcamlのパッケージマネージャーらしい。

https://opam.ocaml.org/

以下のコマンドでOPAMをインストールする

bash
bash -c "sh <(curl -fsSL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh

OPAM初期化

bash
opam init

質問されたらyesと答えておけばいいらしい(適当)

vscodeで開発するのに必要な諸々インストール

このあたりを入れておくと、ターミナルでutopが使えるようになる。
vscode拡張も使えるようになる。

bash
opam install -y utop odoc ounit2 qcheck bisect_ppx menhir ocaml-lsp-server ocamlformat

vscodeの拡張Ocaml Platformを入れればvscodeでの開発も捗る

参考サイト

https://ocaml.org/releases/5.2.1
https://cs3110.github.io/textbook/chapters/preface/install.html#install-opam
https://www.fos.kuis.kyoto-u.ac.jp/~igarashi/class/pl/setup.html
https://www.math.nagoya-u.ac.jp/~garrigue/lecture/2024_keisanki1/use-ocaml.pdf

Discussion