关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct

错误原因,(pip版本过高)

解决思路,降低pip版本

废话少说,上教程

先看pip版本,还有报错信息,是否差不多

先进入工程环境

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第1张图片

 

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第2张图片

 解决办法

双击pip

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第3张图片

 

选手动选择版本,我选择的是pip19.3版本,点击下载,这里下载会报错。

不要慌,只是为了偷懒

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第4张图片

 报错后点击这里

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第5张图片

为了和原装python的pip一致,所以我们把原本环境和现在使用的环境的pip都降级

复制这一段,可以直接复制我给的
pip install --index-url https://pypi.tuna.tsinghua.edu.cn/simple/ pip==19.3

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第6张图片

 关闭刚刚打开的所以窗口,点击这个终端图标

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第7张图片

 将刚刚复制的粘贴到终端窗口,并回车确认

 至此系统自带的pip已经修改好,还得修改当前环境的pip版本。

继续到达这个界面

这里和刚刚一样,记住上次选的版本,这次选的要和上次一样,否则会报错

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第8张图片

仔细看这段,你们的地址和我的不一样,意思一样就行

复制我框选的这一端,从盘符到install(你们各自的路径不一样)

 关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第9张图片

 回到刚刚的终端界面

将刚刚复制的粘贴到终端,并加上一下代码

记得用空格隔开

--index-url https://pypi.tuna.tsinghua.edu.cn/simple/ pip==19.3

 回车下载

 关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第10张图片

 出现这些信息,表示已经安装成功,现在就可以使用pip了

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第11张图片

 已经不报错了。

注:如果觉得下载速度过慢,可以更改一下下载源,下面是教程:

打开这个

点击+号

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第12张图片

将这段网址输入,点击确定,重启pycharm就ok了

https://pypi.tuna.tsinghua.edu.cn/simple/

关于pycharm导入模块报错:Try to run this command from the system terminal. Make sure that you use the correct_第13张图片

 

 

你可能感兴趣的:(pycharm,python,ide)