总结:关掉科学上网,在pycharm设置中装python-docx
from docx import Document
报错:
ModuleNotFoundError: No module named 'docx'
pip install docx
后报错
原因:
导错包了,不是docx而是python-docx
解决:
卸载安装错的 docx
pip uninstall docx
安装正确的包 python-docx
pip install python-docx
仍然无法安装
pip换源
pip install python-docx -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
上面是在终端敲的命令,装过之后仍然显示No module
换个地方装 File-settings-Python Interpreter
接着报错
发现是开了加速器的原因,关掉科学上网,再装一次