0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ethereum入門を始める時に、bash <(curl -L https://install-geth.ethereum.org)が使えなかった時の対処法。

Last updated at Posted at 2018-01-08

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をインストールするはでやらなければいけない事は終了なので、
次の記事のプライベート・ネットに接続するに進める。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?