mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Tweaks as suggested by chriseth.
I will commit this as-is, because it has been pending for a few days over minor issues. We will continue to iterate on this.
This commit is contained in:
parent
d49cfebbf7
commit
deb95b617d
@ -8,8 +8,10 @@ Browser-Solidity
|
|||||||
If you just want to try Solidity for small contracts, you
|
If you just want to try Solidity for small contracts, you
|
||||||
can try `browser-solidity <https://ethereum.github.io/browser-solidity>`_
|
can try `browser-solidity <https://ethereum.github.io/browser-solidity>`_
|
||||||
which does not need any installation. If you want to use it
|
which does not need any installation. If you want to use it
|
||||||
without connection to the Internet, you can also just save the page
|
without connection to the Internet, you can go to
|
||||||
locally or clone http://github.com/ethereum/browser-solidity.
|
https://github.com/ethereum/browser-solidity/tree/gh-pages and
|
||||||
|
download the .ZIP file as explained on that page.
|
||||||
|
|
||||||
|
|
||||||
npm / Node.js
|
npm / Node.js
|
||||||
=============
|
=============
|
||||||
@ -22,7 +24,7 @@ package available.
|
|||||||
|
|
||||||
To install it, simply use
|
To install it, simply use
|
||||||
|
|
||||||
::
|
.. code:: bash
|
||||||
|
|
||||||
npm install solc
|
npm install solc
|
||||||
|
|
||||||
@ -35,6 +37,36 @@ Binary Packages
|
|||||||
Binary packages of Solidity available at
|
Binary packages of Solidity available at
|
||||||
`solidity/releases <https://github.com/ethereum/solidity/releases>`_.
|
`solidity/releases <https://github.com/ethereum/solidity/releases>`_.
|
||||||
|
|
||||||
|
We also have PPAs for Ubuntu. For the latest stable version.
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
sudo add-apt-repository ppa:ethereum/ethereum
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install solc
|
||||||
|
|
||||||
|
If you want to use the cutting edge developer version:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
sudo add-apt-repository ppa:ethereum/ethereum
|
||||||
|
sudo add-apt-repository ppa:ethereum/ethereum-dev
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install solc
|
||||||
|
|
||||||
|
Homebrew is missing pre-built bottles at the time of writing,
|
||||||
|
following a Jenkins to TravisCI migration, but Homebrew
|
||||||
|
should still work just fine as a means to build-from-source.
|
||||||
|
We will re-add the pre-built bottles soon.
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
brew update
|
||||||
|
brew upgrade
|
||||||
|
brew tap ethereum/ethereum
|
||||||
|
brew install solidity
|
||||||
|
brew linkapps solidity
|
||||||
|
|
||||||
|
|
||||||
Building from Source
|
Building from Source
|
||||||
====================
|
====================
|
||||||
|
Loading…
Reference in New Issue
Block a user