关于pip install 包 时出现This is an issue with the package mentioned above,not pip的问题

关于This is an issue with the package mentioned above,not pip

关于pip install 包 时出现This is an issue with the package mentioned above,not pip的问题_第1张图片
今天在用pip下载gensim包的时候,出现了上图中的问题,提示信息是:This is an issue with the package mentioned above,not pip 那说明是包的问题,而不是在使用 pip 去安装这个包或者 pip 本身有故障的问题。
当前我的python版本是python3.13,说明gensim这个库与当前python解释器不兼容,尝试降低一下python的版本,在环境变量中重新配置了python的路径,替换成了python3.7的安装路径。
关于pip install 包 时出现This is an issue with the package mentioned above,not pip的问题_第2张图片
cmd中查看当前的python版本—3.7.5 确定python完成更换。
关于pip install 包 时出现This is an issue with the package mentioned above,not pip的问题_第3张图片
先使用pip list查看一下当前python的包—>发现提示pip需要先更新,如下图:
使用python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple进行更新下载
关于pip install 包 时出现This is an issue with the package mentioned above,not pip的问题_第4张图片
重新进行gensim包的下载
关于pip install 包 时出现This is an issue with the package mentioned above,not pip的问题_第5张图片
成功!!!

你可能感兴趣的:(pip)