From 859e9663061a1e907a5f2c88a74d302e0fa7d88e Mon Sep 17 00:00:00 2001 From: Sion Smith Date: Mon, 29 Jun 2020 14:09:45 +0100 Subject: [PATCH] - added more information about libsodium-dev dependency of cardano-crypto-praos --- node-setup/000_install.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/node-setup/000_install.md b/node-setup/000_install.md index 974db50..09baac2 100644 --- a/node-setup/000_install.md +++ b/node-setup/000_install.md @@ -30,7 +30,7 @@ If we are using an AWS instance running Amazon Linux AMI 2 (see the [AWS walk-th sudo yum update -y sudo yum install git gcc gcc-c++ tmux gmp-devel make tar wget zlib-devel -y - sudo yum install systemd-devel ncurses-devel ncurses-compat-libs -y + sudo yum install systemd-devel ncurses-devel ncurses-compat-libs libsodium-devel -y For Debian/Ubuntu use the following instead: @@ -138,6 +138,8 @@ Now we build and install the node with ``cabal``, which will take a couple of mi cabal install cardano-node cardano-cli +#### Building 1.14.x has an added dependency. See [Cabal dependencies](https://github.com/input-output-hk/cardano-node/blob/master/README.md#dependencies) for instructions. + This will build and install `cardano-node` and `cardano-cli` into your `~/.cabal/bin` folder by default, so the remark about your `PATH` from above applies here as well: Make sure folder `~/.cabal/bin` is in your path or copy the executables to a folder that is. Alternatively you can run `cabal install cardano-node cardano-cli --installdir="$HOME/.local/bin"` to install the `cardano-node` and `cardano-cli` directly into your `~/.local/bin` folder. __Note__: When using __cabal install__, make sure you have `overwrite-policy: always` in your `.cabal/config` or delete old versions of `cardano-node` and `cardano-cli` from `~/.cabal/bin`. Otherwise cabal install will not overwrite the old executables.