X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=how_to_get_the_programming_languages_running_on_your_computer.mdwn;h=31697f5c98115bc678d22088ff5e049fd73311e6;hp=a320c9b04039b38f495f3f0e5ea2aa1d5589410b;hb=7b950102c01f2c7f1a86932b13f4086ddefadb62;hpb=f31029dbfae9ab82e542c1fd104feaeb0ef2c2ba diff --git a/how_to_get_the_programming_languages_running_on_your_computer.mdwn b/how_to_get_the_programming_languages_running_on_your_computer.mdwn index a320c9b0..31697f5c 100644 --- a/how_to_get_the_programming_languages_running_on_your_computer.mdwn +++ b/how_to_get_the_programming_languages_running_on_your_computer.mdwn @@ -229,7 +229,7 @@ Sometimes we may refer to Caml or ML more generally; but you can assume that what we're talking about always works more specifically in OCaml. -It's helpful if in addition to OCaml you also install the Findlib add-on and/or the OPAM "package manager." +It's helpful if in addition to OCaml you also install the Findlib add-on and/or the [OPAM](https://opam.ocaml.org) "package manager." These will make it easier to install additional add-ons further down the road. However, if you're not able to get them working, don't worry about it much. @@ -261,13 +261,15 @@ The current version of OCaml is 4.02.1 (released October 2014). * **To install on Mac without MacPorts** - *Instructions coming* + The people in charge of OCaml (they're at the French research institute INRIA) have stopped making pre-built packages for Mac OS X. One option you have is to use their package for a slightly older version of OCaml, 4.01.1 from Sept. 2013. You can find that as a "Precompiled binary for Mac OS X" on [this page](http://ocaml.org/releases/4.01.0.html). -* *Another instruction page focuses on [OPAM](http://ocaml.org/docs/install.html), also [this](https://opam.ocaml.org).* - -* *[More details about installing OCaml on Macs, if needed](http://mirror.ocamlcore.org/wiki.cocan.org/getting_started_with_ocaml_on_mac_os_x)* + A second option is to install the OPAM package manager and use that to build and install the latest version of OCaml. *Instructions on how to do that will be posted shortly.* Note that this method doesn't install all the extensions that are part of the Haskell Platform, but only the core pieces of GHC. You can use Cabal to download and manage any extra extensions you turn out to need, down the road. - It's useful to know about the general [Haskell wiki](https://wiki.haskell.org) (not restricted to just GHC). They have a [Getting Started](https://wiki.haskell.org/Haskell_in_5_steps) page, which also recommends that you install the Haskell Platform. +If any of the instructions above don't work, then you can try alternative instructions for [Mac](http://new-www.haskell.org/downloads/osx) or [Windows](http://new-www.haskell.org/downloads/windows) or [Ubuntu](http://new-www.haskell.org/downloads/linux). Note that this method doesn't install all the extensions that are part of the Haskell Platform, but only the core pieces of GHC. You can use Cabal to download and manage any extra extensions you turn out to need, down the road. + +**After installing Haskell**, open a Terminal and type: + + cabal update + +It may give you a message about updating your `PATH` variable. On my Mac, I first typed `echo $PATH` and verified that `/usr/local/bin` appeared somewhere in the resulting string. (The elements are divided by `:` characters.) Then I typed this: + + echo 'export PATH="$HOME/Library/Haskell/bin:$PATH"' >> ~/.bash_profile + +That was to update my `PATH` variable as instructed by Cabal. On a Linux machine, or if you installed Haskell differently on your Mac, you might have to type instead: + + echo 'export PATH="$HOME/.cabal/bin:$PATH"' >> ~/.bash_profile + +Some instructions may say to use `.bashrc` instead of `.bash_profile`. These files do similar jobs. + +After issuing the relevant `echo` command, I exited the Terminal and started a new Terminal session. Now if I type `echo $PATH` I should see the directory I just added in the list. Now I can contine setting up Cabal. I type: + + which alex happy + +If that gives me back two pathnames, one to the program `alex` and the other to the program `happy`, then I'm already finished. If not, then I type: + + cabal install alex happy + +This installs those two programs. They are helpers that Cabal needs to build and install some packages. + + +