Set-up Ethereum Development environment
Here’s a brief environment setup how-to for Ethereum development. It’s based on Mac OS.
- Install Python2.7.
- Install solc, the solidity compiler, and solc-cli
sudo npm install -g solc solc-cli --save-dev - Install ethereum/cpp-ethereum, via brew
brew tap ethereum/ethereum
brew install ethereum - Install testrpc (to deploy smart contract as local test environment) via pip.
- Install Node.js.
- Install truffle(for fast local compiling and deploying smart contracts).
npm install -g truffle
Written on January 20, 2017
