diff options
author | chriseth <chris@ethereum.org> | 2017-08-04 20:51:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-04 20:51:31 +0800 |
commit | dc0f85c4fb65fa385bb7145c73cc5edaba195483 (patch) | |
tree | 3835e2ede135a7385e3c40aed00aa3f91dab4001 /docs | |
parent | 38e9505a83ed9b37ce91b8cd1ec268fc96be50cc (diff) | |
parent | f5fc8088756929b25f2d5f20c6ee0a555ccf40b1 (diff) | |
download | dexon-solidity-dc0f85c4fb65fa385bb7145c73cc5edaba195483.tar.gz dexon-solidity-dc0f85c4fb65fa385bb7145c73cc5edaba195483.tar.zst dexon-solidity-dc0f85c4fb65fa385bb7145c73cc5edaba195483.zip |
Merge pull request #2685 from elopio/patch-1
Add the command to install the stable solc snap
Diffstat (limited to 'docs')
-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 e07561c5..4cb50cf0 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -83,7 +83,15 @@ If you want to use the cutting edge developer version: sudo apt-get update sudo apt-get install solc -We are also releasing a `snap package <https://snapcraft.io/>`_, which is installable in all the `supported Linux distros <https://snapcraft.io/docs/core/install>`_. To help testing the unstable solc with the most recent changes from the development branch: +We are also releasing a `snap package <https://snapcraft.io/>`_, which is installable in all the `supported Linux distros <https://snapcraft.io/docs/core/install>`_. To install the latest stable version of solc: + +.. code:: bash + + sudo snap install solc + +Or if you want to help testing the unstable solc with the most recent changes from the development branch: + +.. code:: bash sudo snap install solc --edge |