Created
October 15, 2018 03:58
-
-
Save thosuperman/8e8158441b174ac8ce777bc1843f9297 to your computer and use it in GitHub Desktop.
Ethereum Installing Geth On Centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building | |
$ sudo yum install golang | |
$ sudo yum install gmp-devel | |
$ git clone https://github.com/ethereum/go-ethereum | |
$ cd go-ethereum/ | |
$ make geth | |
$ ls -al build/bin/geth | |
Running | |
$ ./go-ethereum/build/bin/geth | |
Note: You can move the executable out from the build/bin directory to anywhere you find convenient. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot!