由于升级破坏了所有功能,需要降级/重新安装pip

问题描述 投票:0回答:1

在我的Amazon EC2实例上,我突发奇想地升级了pip,现在几乎我尝试使用它运行的每个命令都会返回如下错误:

pkg_resources.DistributionNotFound: The 'pip==9.0.1' distribution was not found and is required by the application

现在我无法从pip中做任何事情来解决它。我试着运行pip uninstall pip只是为了看看我是否会幸运,看起来它会起作用,但后来它给出了同样的错误。我对Linux的熟悉程度大概是三分之一。 EC2使用yum包管理器,尝试yum remove pip没有找到包。

amazon-ec2 pip
1个回答
0
投票

试试这个

sudo python -m pip install --force-reinstall pip==8.1.1
© www.soinside.com 2019 - 2024. All rights reserved.