Skip to content

Instantly share code, notes, and snippets.

@thosuperman
Created October 15, 2018 03:58
Show Gist options
  • Save thosuperman/8e8158441b174ac8ce777bc1843f9297 to your computer and use it in GitHub Desktop.
Save thosuperman/8e8158441b174ac8ce777bc1843f9297 to your computer and use it in GitHub Desktop.
Ethereum Installing Geth On Centos
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.
@Patrollia
Copy link

Thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment