Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error when Installing Ethereum: Package 'ethereum' has no installation candidate

I am installing Ethereum on Ubuntu 17.10 following the steps in this article: https://medium.com/@mvmurthy/full-stack-hello-world-voting-ethereum-dapp-tutorial-part-2-30b3d335aa1f

But when executing the following command:

sudo apt-get install ethereum

I get the following:

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
like image 320
Muhammad Altabba Avatar asked Nov 13 '17 05:11

Muhammad Altabba


1 Answers

It seems that there is a compatibility issue with the last stable version of Ethereum and Ubuntu 17.10; and the latest unstable version could be installed with no issues:

sudo apt-get install ethereum-unstable

However, this means that in the next stable version of Ethereum there will be no issues.

like image 107
Muhammad Altabba Avatar answered Oct 16 '22 14:10

Muhammad Altabba