Mist ToolsMist GitHub Address: Https://github.com/ethereum/mist The Mist Browser is the tool of choice to browse and Useðapps. Mist is the official Ethereum browser, through the Mist we can easily connect to our private network, so as to better develop, debug, test our smart contract.
Step 1 Installation dependenciesMethod One: Installation steps, see GitHub Address: Https://github.com/ethereum/mist $ Curl https://install.meteor.com/| SH $ npm install-g electron@1.3.13 $ npm install-g Gulp Note: 1. Using NPM to install electron unsuccessful solution http://blog.csdn.net/upc_xbt/article/details/53342129 2. Memteor installation problems refer to using proxy settings download using: Curl-x 172.16.1.26:1080 https://install.meteor.com | SH or replace the path tarball_url= "https://static-meteor.netdna-ssl.com/packages-bootstrap/${release}/meteor-bootstrap-${ Platform}.tar.gz "http://blog.csdn.net/vinsuan1993/article/details/77144263 online a lot to replace this request path, some failure or this HTTPS link request is not accessible caused , I use this access today can, hope to be effective for you.
Way two: On GitHub tip use the following way $ curl https://install.meteor.com/| SH $ curl-o--L https://yarnpkg.com/install.sh | bash $ yarn Global Add electron@1.4.15 $ yarn Global Add Gulp Note: Yarn on Ubuntu installation can be explained at the bottom of the content
Step 2 Installing the Mist body$ git clone https://github.com/ethereum/mist.git $ cd Mist $ git submodule update--init $ yarn
Step 3 Running mist/interface is the Mist daemon$ cd Mist/interface && meteor--no-release-check or separate execution CD Mist/interface Meteor--no-release-check
This phase may take a bit longer and will start MongoDB, proxy, and so on. The completed console screenshot is as follows:
Step 4 opens a new window to start the mist with GETH.IPCOpen a new window, go back to the Mist folder below, and enter the command electron below. --RPC/HOME/XIABING/TMPPRIVATE/GETH.IPC note here that the address/HOME/XIABING/TMPPRIVATE/GETH.IPC is the GETH.IPC file that we created in front of our new Ethereum private connection. The Mist interface after startup is as follows
Yarn installs Ubuntu installation is relatively simpleInput command
sudo apt-key adv--keyserver pgp.mit.edu--recv d101f7899d41f3c3 echo "Deb http://dl.yarnpkg.com/debian/stable main" | sudo tee/etc/apt/sources.list.d/yarn.list |
Then enter the installation command on the line:
sudo apt-get update && sudo apt-get install yarn |
In the installation of problems can be referred to: http://blog.csdn.net/vinsuan1993/article/details/77144263 http://www.ethchinese.com/?p=796