diff options
author | chriseth <c@ethdev.com> | 2016-02-04 05:34:44 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-02-04 05:34:44 +0800 |
commit | fad2d4df222f3fc306eda84a6a3842955541f9d0 (patch) | |
tree | 6b12109fae47b9fe81aac3b2d96b4b8af93c549b | |
parent | 91a6b35f18c9e3ae38b08460ba3b0d3590e573dc (diff) | |
parent | 1d9f8c26f5090062d328295b8b1bbc49e35435ff (diff) | |
download | dexon-solidity-fad2d4df222f3fc306eda84a6a3842955541f9d0.tar.gz dexon-solidity-fad2d4df222f3fc306eda84a6a3842955541f9d0.tar.zst dexon-solidity-fad2d4df222f3fc306eda84a6a3842955541f9d0.zip |
Merge pull request #380 from 4tXJ7f/patch-1
[Documentation] Include correct dev package
-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 25690eca..aa5890e8 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -98,12 +98,20 @@ 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 -------- |