欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pycharm:Make sure that you use the correct version of pip installed for your Python

程序员文章站 2022-05-01 21:51:19
...

pycharm:Make sure that you use the correct version of pip installed for your Python
问题一般是这个:

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 …

看这意思是 pip 和 py 版本不兼容,可是窝下的都是最新版鸭!

cmd查了一下pip版本:pip -V

pycharm:Make sure that you use the correct version of pip installed for your Python

主要问题是:下载一些库比如requests时没有任何问题,不过我在下载twisted和scrapy时就会弹出错误。

不过网上查了半天都是使用 -m pip来避免的,就没有能解决问题的,可是我在pycharm上又不好加上-m pip,气死窝了!

所以,遇见这个问题,建议直接用cmd下载,pycharm里面也会出现下载好的库。
我下载scrapy是看的这篇:Python版本3.7.3 pip安装scrapy1.6.0

注意:
同样需要下载scrapy的 ,Twisted-19.2.0-cp37-cp37m-win_amd64.whl
中cp37是py的版本py3.7,比如我是py3.8.3,应该用 cp38,amd64是python的位数。
可以进入http://www.lfd.uci.edu/~gohlke/pythonlibs/
Ctrl+F 输入 Twisted 下载。

命令行下载完打开pycharm查看,果然已经乖乖在那了!
pycharm:Make sure that you use the correct version of pip installed for your Python
同时教大家修改 pip 换成国内源加速下载:

网上大多全是一样的修改 pip.cof 配置,但win10其实是添加 pip.ini,
在 C:\Users\Dimention (我的用户名是Dimention,进你自己的就好)
中新建 pip文件夹,再在里面 添加一个 pip.ini
pycharm:Make sure that you use the correct version of pip installed for your Python
pip.ini内容:
(我用的是阿里的镜像)

[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

国内镜像源:

  • 阿里云 https://mirrors.aliyun.com/pypi/simple/
  • 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
  • 豆瓣(douban) http://pypi.douban.com/simple/
  • 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
  • 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

有需要的话,把 http 改成 https

相关标签: Python