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

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



















