Sha256: 916be659b929f600b321be71c9ef405c253e2f28a198c21f4265cb9e5515f8f2
Contents?: true
Size: 702 Bytes
Versions: 47
Compression:
Stored size: 702 Bytes
Contents
# Installation We'll be using `PolyML` as our `SML` implementation. General instructions for Linux/OS X/Free BSD can be found at https://github.com/polyml/polyml/blob/master/README.md. If you want to install from source, the process is pretty easy: ``` $ git clone https://github.com/polyml/polyml.git $ cd polyml $ ./configure ``` If you want to install it in a custom location for instance `$HOME/.local`: ``` $ ./configure --prefix=$HOME/.local ``` Last step: ``` $ make compiler $ make install ``` Check that it was installed correctly: ``` $ poly ``` if you see the interpreter, you are ready! if not, you'll probably have to add `$HOME/.local/bin` (or `<you prefix>/bin`) to your `$PATH`.
Version data entries
47 entries across 47 versions & 1 rubygems