Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions docs/sphinx/src/installation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,24 @@ To install Liquidity from sources, you will need a working
installation of OCaml with `OPAM
<http://opam.ocaml.org/doc/2.0/Install.html>`__ at least version 2.0.

As of Oct 4, 2019, the following process should work:
As of Dec 1, 2019, the following process should work:

1. Create an OPAM switch called ``liquidity``, with version 4.06.1 of OCaml::

opam switch create liquidity 4.06.1

opam switch create liquidity --empty
opam install --switch=liquidity ocaml.4.06.1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the fix, can you modify the PR to use ocaml-base-compiler.4.06.1 instead as noted per ocaml/opam#3815 (comment) in the thread you linked?


This command should take some time to compile the OCaml distribution.
Everytime you want to use this switch in a terminal, you should use
the following command::

eval `opam env --switch liquidity`

2. Checkout the Github repository::

git clone https://github.com/OCamlPro/liquidity
cd liquidity

This command should create a ``liquidity`` directory with the ``next`` branch.

3. Within the ``liquidity`` directory, the Dune Network sources in branch
Expand Down