pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决

pycharm安装第三方库:报错Try to run this command from the system terminal. Make sure that you use the correct version of 'pip’问题,亲测已解决!!!

之前在做实验的时候用pycharm安装第三方工具包的时候出现了如下问题Try to run this command from the system terminal
pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决_第1张图片

虽然在pycharm当中会出现这个问题,但是当我使用cmd命令行执行pip install的时候没有发生错误,但是如果每次要安装的时候都去手动执行install命令则太过于麻烦了。
pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决_第2张图片
执行pip list命令,查看下pip当前的版本为22.0.4,感觉可能是python版本与pip版本会有不兼容的问题,我自己用的是py3.8,所以尝试着把pip降级为20版本的。

步骤从下面开始!!!

第一步,先在我的电脑地址栏当中输入%APPDATA%,进入到文件夹以后新建一个pip文件夹,接着再创建pip.ini文件,如果创建文本看不到后缀名,可点击我的电脑最上面的查看按钮,选择查看文件扩展名

pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决_第3张图片

如下图创建一个pip.ini文件
在这里插入图片描述

第二步:将下列四行代码复制进去pip.ini文件当中,切换一下镜像源。
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
第三步:在pycharm 底部的Terminal终端执行如下命令:
python -m pip install pip==20.2.4

pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决_第4张图片

提示successfully installed pip-20.2.4,说明安装成功。这个时候再查看一下pip的版本已经改为20.0.4

pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决_第5张图片

第四步:最后再安装一下jieba这个第三方库,就可以看到安装成功了!!!

pycharm安装第三方库:Try to run this command from the system terminal. Make sure that you use the问题,亲测已解决_第6张图片

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