Ehereum入門のこの記事
Gethをインストールする
$ bash <(curl -L https://install-geth.ethereum.org) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: install-geth.ethereum.org
できない。。。。。
検索してみる。
bash <(curl -L https://install-geth.ethereum.org) できない
で検索。
結果15件、しかもほとんど中国語で日本語でこれに詰まった人がいない。。。。
仕方ないので、他の方法でGethのinstallを試みる。
bash <(curl -L https://install-geth.ethereum.org) impossible
で検索。
英語の情報なら結構あるでしょう。
結果11件、でもHomebrewでinstallできる奴をみっけた。
go ethereum - How to run geth --fast on OSX - Ethereum Stack Exchange
とりあえず挑戦。
そっからリンクをここに飛んで、
Installation Instructions for Mac
homebrewはinstallされているのでOK。
homebrewが入っているかどうかは
$ brew -v
Homebrew 1.4.2
で確認できる。
以下のコマンドをターミナルにそれぞれ打って
$ brew tap ethereum/ethereum
$ brew install ethereum
実際にgethがインストールされたかを確認するために、
$ geth help
のコマンドを実行。gethコマンドのオプション情報が表示されれば、正しくインストールされています。
Installation Instructions for Macのサイトには、
続きとして、以下のこと載っていたけど、実行しないでもgeth help
コマンドが実行できたので、多分必要になるまではやらなくても大丈夫。
You can install the develop branch by running --devel:
brew install ethereum --devel
After installing, run geth account new to create an account on your node.
You should now be able to run geth and connect to the network.
Make sure to check the different options and commands with geth --help
For options and patches, see: https://github.com/ethereum/homebrew-ethereum
これでGethをインストールするはでやらなければいけない事は終了なので、
次の記事のプライベート・ネットに接続するに進める。