Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installation of Ethereum on ubuntu failing using ppa:ethereum/ethereum

We are behind proxy. The proxy is already set.

Earlier we ran below commands and installed ethereum successfully.

sudo apt-get install software-properties-common

sudo add-apt-repository -y ppa:ethereum/ethereum

sudo apt-get update

sudo apt-get install ethereum

But now when we are trying to install ethereum in new machine of same configuration it is throwing us following error :


Cannot add PPA: 'ppa:ethereum'.

Please check that the PPA name or format is correct.

We checked other sites, but no success. Even Ethereum.org is showing the same commands. Is there any other way to install ethereum?

Please let me know if you need any more details. Any help is appreciated.

like image 293
kumar_5369 Avatar asked Oct 27 '25 14:10

kumar_5369


1 Answers

Try: sudo apt-get install --reinstall ca-certificates. If this doesn't work: try: sudo -E add-apt-repository ppa:ethereum/ethereum. Adding the -E preserves user environment variables, which could be enough to get it working. Also, ensure the clock on the machine is set correctly.

Source: https://askubuntu.com/questions/429803/cannot-add-ppa-please-check-that-the-ppa-name-or-format-is-correct

like image 104
emberdex Avatar answered Oct 29 '25 08:10

emberdex