其他分享
首页 > 其他分享> > 安装geth中遇到的问题解决,ppa

安装geth中遇到的问题解决,ppa

作者:互联网

Ubuntu中一般安装geth的过程

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo add-apt-repository -y ppa:ethereum/ethereum-dev
sudo apt-get update
sudo apt-get install ethereum
geth -help

一般情况下是没有问题的,但是我遇到的这样的问题,当复制第一句运行的时候
在这里插入图片描述
第一句没问题
第二句之后开始出现错误,找不到啊,之类的
在这里插入图片描述
E: 仓库 “http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu focal Release” 没有 Release 文件。
N: 无法安全地用该源进行更新,所以默认禁用该源。
N: 参见 apt-secure(8) 手册以了解仓库创建和用户配置方面的细节。
显示这种错误
解决方案
删除ppa,但没一个ppa显示的都不一样,我们主需要看我上面错误加粗的地方,进行修改

sudo add-apt-repository --remove ppa:/ubuntu-wine/ppa

问题已解决,这是后面的运行结果,不在报错
在这里插入图片描述
最后geth安装完成之后显示
在这里插入图片描述
即成功。

标签:geth,ppa,sudo,apt,add,ethereum,安装
来源: https://blog.csdn.net/weixin_42375493/article/details/117906715