E: Failed to fetch http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu/dists/eoan/InRelease 403 Forbidden [IP: 2001:67c:1560:8008::15 80]
E: The repository 'http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu eoan InRelease' is not signed.
E: The repository 'http://ppa.launchpad.net/deadsnakes/ppa/ubuntu eoan Release' does not have a Release file.
E: The repository 'http://ppa.launchpad.net/tista/adapta/ubuntu eoan Release' does not have a Release file.我试过:
sudo apt-add-repository -r ppa:armagetronad-dev/ppa
sudo apt update -q没什么用。我太迷茫了。Linux的新手。主要目的是安装python。就在那时我发现了这个问题。
发布于 2020-04-04 17:18:14
您已经添加了不支持Ubuntu发行版的PPA。
因此,您需要首先删除这个PPA:
sudo apt-get install ppa-purge
sudo ppa-purge ppa:jonathonf/python-3.6
sudo ppa-purge ppa:deadsnakes/ppa
sudo add-apt-repository -r ppa:tista/adapta然后更新包列表并使用以下方法安装更新:
sudo apt-get update
sudo apt-get dist-upgrade你就完蛋了。
请注意,您的系统已经安装了Python2和Python3。它们可以作为python2和python3使用。
用于命令的文档(手册页):
apt-getppa-purgeadd-apt-repositoryhttps://askubuntu.com/questions/1224058
复制相似问题