python3导入docx出错怎么解决?
在python3" title="python3">python3中导入docx会出现下面的错误:
>File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/docx-0.2.4-py3.3.egg/docx.py", line 30, in <module>from exceptions import PendingDeprecationWarning
ImportError: No module named 'exceptions'
出现错误的原因:
安装docx库时使用pip install docx命令安装。
解决方法:
在python3中安装docx时使用下面的命令:
pip install python-docx
更多Python知识请关注
以上是 python3导入docx出错怎么解决? 的全部内容, 来源链接: utcz.com/z/528613.html