O'Caml at UW Here are some notes on installing O'Caml. Be warned that I have only installed it on Debian Linux and on Windows. Feel free to email me (Erika) or Dan if you have any problems or questions. - On the department Linux machines O'Caml is installed on uns (/uns/bin/ocaml, /uns/bin/ocamlc). For help setting up uns see the uns FAQ http://www2.cs.washington.edu/uns/faq/uns-user-faq.html#q3.1 - On Linux: If you run Debian just run 'apt-get install ocaml'. Otherwise, the Caml website (http://caml.inria.fr/download.en.html) has both source and binary downloads for Linux. - On Windows Caml can be downloaded from the Caml website (http://caml.inria.fr/download.en.html). The easiest way to install is to download the Windows binary and run the installer. It requires some Microsoft development tools or Cygwin (http://www.cygwin.com/). If you need to install Cygwin, there is also an option for selecting Caml when installing Cygwin packages. - On Macs: The Caml website (http://caml.inria.fr/download.en.html) has both source and binary downloads for OSX. ----------------------------------------- Running ocaml: ocaml: The read/eval/print loop for Caml ocamlc: The Caml byte code compiler (see esp. the -i and -c options) ocamlopt: The Caml native code compiler For further information, see the man pages and part III of the system manual: http://caml.inria.fr/pub/docs/manual-ocaml/index.html