您的位置:首页 > 产品设计 > UI/UE

Pip安装依赖于six、requests库失败的解决方法

2018-05-29 12:26 190 查看

Installing collected packages: six
Found existing installation: six 1.4.1
DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project. Uninstalling six-1.4.1:

把安装的命令改成
sudo pip install six --upgrade --ignore-installed six

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.

把安装的命令改成
sudo pip install requests --upgrade

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Pipsix request
相关文章推荐