我们是幕后黑手。代理已经设置好了。
更早的时候,我们在命令下面运行并成功地安装了ethereum。
sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum但现在,当我们试图在新的配置相同的机器上安装ethereum时,它会抛出以下错误:
无法添加PPA:'ppa:ethereum'。
请检查PPA名称或格式是否正确。
我们检查了其他网站,但没有成功。甚至Ethereum.org也显示了相同的命令。还有其他方法来安装ethereum吗?
如果你需要更多的细节,请告诉我。任何帮助都是非常感谢的。
发布于 2017-09-10 01:28:09
试试:sudo apt-get install --reinstall ca-certificates。如果这不起作用,请尝试:sudo -E add-apt-repository ppa:ethereum/ethereum。添加-E将保留用户环境变量,这足以使其正常工作。同时,确保机器上的时钟设置正确。
https://stackoverflow.com/questions/46130859
复制相似问题