我按照本文中的步骤在Ubuntu 17.10上安装Ethereum: https://medium.com/@mvmurthy/full-stack-hello-world-voting-ethereum-dapp-tutorial-part-2-30b3d335aa1f
但是在执行以下命令时:
sudo apt-get install ethereum
我得到以下内容:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ethereum is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'ethereum' has no installation candidate
答案 0 :(得分:1)
似乎与以太网和Ubuntu 17.10的最后一个稳定版本存在兼容性问题;并且可以安装最新的不稳定版本,但没有问题:
sudo apt-get install ethereum-unstable
然而,这意味着在下一个稳定版的以太坊中没有任何问题。
答案 1 :(得分:1)
您尝试过常见的软件属性吗? 首先使用此命令安装此
(1)sudo apt-get install software-properties-common
然后使用ethereum ppa
(2)sudo add-apt-repository -y ppa:ethereum / ethereum
(3)sudo apt-get update
(4)sudo apt-get install ethereum
答案 2 :(得分:0)
您是否添加了以太坊存储库?如果没有,请尝试以下方法:
sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
答案 3 :(得分:0)
安装不稳定版本的ethereum
软件包似乎不是一个好主意。
考虑该软件包只是要将一堆二进制文件(geth,swarm和其他以太坊工具)安装到文件系统中。我建议直接从ethereum CDN servers下载最新的稳定版本,或按照官方github repo
中所述的说明自行编译。