pip报错解决集锦

2020-06-23 13:33:53 浏览数 (1)

文章时间:2020年6月21日 15:14:33 解决问题:pip各类的操作的解决方法

# 报错请输入部分关键词检索

报错一

代码语言:javascript复制
ERROR: cryptography 2.9.2 has requirement cffi!=1.11.3,>=1.8, but you'll have cffi 1.6.0 which is incompatible.

解决方法:

代码语言:javascript复制
pip install PyCrypto

pip install paramiko

报错二

代码语言:javascript复制
ERROR: Cannot uninstall 'requests'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

解决方法:

代码语言:javascript复制
pip install --ignore-installed requests
pip

0 人点赞