我想在centos6.5安装围棋。然而,本参考并没有展示如何在centos上安装go。
我尝试了[vagrant@vagrant-centos65 ~]$ bash <(curl -L https://install-geth.ethereum.org),但它返回了以下错误。你能告诉我怎么解决吗?
==> Looking for geth
✘ Geth is missing
==> Checking dependencies
✘ apt-get is missing
==> Installation failed
==> OS not supported: geth one-liner currently support OS X, Ubuntu and Debian.
For instructions on installing ethereum on other platforms please visit http://ethereum.org/发布于 2016-02-22 08:23:49
我认为他们选择.deb包(Ubuntu/Debian)是因为它们是最常见的。您可以始终查看最新的稳定版本,并自己编译它。
一个更容易的方法可能是使用外星将借记符转换为rpms。
以下是完全未经测试的。
yum install golang
wget http://ppa.launchpad.net/ethereum/ethereum/ubuntu/pool/main/e/ethereum/geth_1.3.3+5wily-0ubuntu1_amd64.deb
sudo alien -r geth_1.3.3+5wily-0ubuntu1_amd64.deb
rpm -i geth_1.3.3+5wily-0ubuntu1_amd64.rpm如果您想要编译它,它更像是:(也是未经测试的)
yum install golang
yum install gmp-devel
git clone https://github.com/ethereum/go-ethereum
cd go-ethereum
make geth
build/bin/gethhttps://ethereum.stackexchange.com/questions/1537
复制相似问题