答案1
只需运行
sudo apt-get update
进而
sudo apt-get install python3-pip
或python-pip
取决于您的版本。
显然,全新安装并没有兑现可用软件包的完整列表。
答案2
你可以试试
sudo apt-get clean
或者
sudo apt-get autoclean
然后
sudo apt-get -f install
它将解决你的问题
答案3
对于将来遇到此问题的人,只需运行:
python3 -m pip install [package]
答案4
安装时,Windows 10 上的 Ubuntu 似乎不是最新的,只需运行:
sudo apt-get update
如果是 Python2:
sudo apt-get install python-pip
如果是 Python3:
sudo apt-get install python3-pip
获取适用于 python3 的 pip(pip 默认提供 Python 2)