OCamlYayu Wang included in category Programming_language 2023-10-11 2023-11-04 68 words One minute Contents OpamInstallOpam SwitchOpam InstallDependenciesOpam CleanOpamOpam is the package manager for the OCaml programming languageInstall1 2 3 4 5 6 7 yay -S opam # or bash -c "sh <(curl -fsSL https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh)" # then opam init eval $(opam env)Opam Switch1 2 3 opam switch list-available ocaml-base-compiler opam switch create 4.14.0 eval $(opam env)Opam InstallDependencies1 opam install . --deps-onlyOpam Cleanclean cache1 opam clean