pip安装xxx模块报错 Could not find a version that satisfies the requirement exceptions的解决办法

1.安装doxc模块后,报错 Could not find a version that satisfies the requirement exceptions,ERROR: No matching distribution found for exceptions如图:

pip安装xxx模块报错 Could not find a version that satisfies the requirement exceptions的解决办法_第1张图片

解决方法:

删除安装的doxc模块:pip unstall doxc;

打开网址https://www.lfd.uci.edu/~gohlke/pythonlibs/找到 python_docx-0.8.10-py2.py3-none-any.whl进行下载,放到项目cmd对应目录中 eg:(base)C;\user\aaa\pip....,就放到C;\user\aaa中;

执行命令>pip install python_docx-0.8.10-py2.py3-none-any.whl进行安装。

2.对于其他模块的问题也同样适用,只是要找的whl名字不同。

你可能感兴趣的:(pip安装xxx模块报错 Could not find a version that satisfies the requirement exceptions的解决办法)