diff options
author | Andres Nötzli <andres.noetzli@gmail.com> | 2016-02-04 05:04:29 +0800 |
---|---|---|
committer | Andres Nötzli <andres.noetzli@gmail.com> | 2016-02-04 05:04:29 +0800 |
commit | 1d9f8c26f5090062d328295b8b1bbc49e35435ff (patch) | |
tree | 6b12109fae47b9fe81aac3b2d96b4b8af93c549b /docs/installing-solidity.rst | |
parent | f311a6123d2fd9881b68266fe6f70ed9a96aba09 (diff) | |
download | dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.gz dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.tar.zst dexon-solidity-1d9f8c26f5090062d328295b8b1bbc49e35435ff.zip |
[Documentation] Add details on libjsonrpccpp-dev
Add explanation to the documentation that the package name changes from `libjson-rpc-cpp-dev` to `libjsonrpccpp-dev` and is supplied by the universe repository instead of the Ethereum PPA.
Diffstat (limited to 'docs/installing-solidity.rst')
-rw-r--r-- | docs/installing-solidity.rst | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index 08c6cfd8..aa5890e8 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -98,11 +98,19 @@ Now add all the rest: sudo apt-get -y update sudo apt-get -y upgrade -Use the following command to add the develop packages: +For Ubuntu 15.04 (Vivid Vervet) or older, use the following command to add the develop packages: + +.. code-block:: bash + + sudo apt-get -y install build-essential git cmake libboost-all-dev libgmp-dev libleveldb-dev libminiupnpc-dev libreadline-dev libncurses5-dev libcurl4-openssl-dev libcryptopp-dev libjson-rpc-cpp-dev libmicrohttpd-dev libjsoncpp-dev libedit-dev libz-dev + +For Ubuntu 15.10 (Wily Werewolf) or newer, use the following command instead: .. code-block:: bash sudo apt-get -y install build-essential git cmake libboost-all-dev libgmp-dev libleveldb-dev libminiupnpc-dev libreadline-dev libncurses5-dev libcurl4-openssl-dev libcryptopp-dev libjsonrpccpp-dev libmicrohttpd-dev libjsoncpp-dev libedit-dev libz-dev + +The reason for the change is that `libjsonrpccpp-dev` is available in the universe repository for newer versions of Ubuntu. Building -------- |