已尝试
sudo apt update
sudo apt-get install python3-setuptools
给出错误-
E: Package 'python3-setuptools' has no installation candidate
已尝试
sudo apt update
sudo apt install python3-pip
给出错误-
E: Package 'python3-pip' has no installation candidate
当检查通用存储库时 -
sudo add-apt-repository universe
'universe' distribution component is already enabled for all sources.
对于任何其他命令,也会出现错误,因为 python3-packagename 没有安装候选项。
我检查了python的版本,它是3.8.2。我现在安装了3.9,如何将其设置为默认版本。我想尝试一下,看看它是否有效。
答案1
跑步
sudo nano /etc/apt/sources.list
并添加以下几行。
deb http://archive.ubuntu.com/ubuntu bionic main universe
deb http://archive.ubuntu.com/ubuntu bionic-security main universe
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe
按Ctrl+O保存文件。按Ctrl+X退出 nano。
然后运行:
sudo apt update
sudo apt install python3-pip
这有效。
我也与
apt update
apt upgrade