pycharm 安装模块 use the correct version of 'pip' installed for your Python interpreter

↘锁芯ラ 提交于 2020-02-24 18:39:31

Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at 'C:\Users\Administrator\PycharmProjects\untitled\venv\Scripts\python.exe'.

 

 

 

在下载库的界面点击 Manage Repositories

 

 通过切换下载源就可以解决问题啦

 

 

 

 

 

常用pip的镜像路径有:

1.阿里云 (经过测试,pip提示版本不正确)

pip install 包名 -i http://mirrors.aliyun.com/pypi/simple/

2.中国科技大学 (经过测试,能用)
pip install 包名 -i https://pypi.mirrors.ustc.edu.cn/simple/

3.豆瓣
pip install 包名 -i http://pypi.douban.com/simple/

4.清华大学  (经过测试,不能用)
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple/

5.中国科学技术大学
pip install 包名 -i http://pypi.mirrors.ustc.edu.cn/simple/

6.加利福利亚大学
pip install 包名 -i https://www.lfd.uci.edu/~gohlke/pythonlibs/
————————————————
 
原文链接:https://blog.csdn.net/qq_44142640/article/details/104214185

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!