首页 > 解决方案 > 无法安装 python-docx (MacOS)

问题描述

我正在尝试安装docx软件包。但得到以下信息ImportError

ImportError: cannot import name Document

所以按照这里的建议,我尝试了:

pip install python-docx 但出现以下错误(python 版本:2.7.15)

..
..
..

    creating build/lib/docx/templates
    copying docx/templates/default-header.xml -> build/lib/docx/templates
    copying docx/templates/default-settings.xml -> build/lib/docx/templates
    copying docx/templates/default-footer.xml -> build/lib/docx/templates
    error: can't copy 'docx/templates/default-docx-template': doesn't exist or not a regular file 
    Command 

 /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python -u -c "import  

setuptools,tokenize;__file__='/private/var/folders/0c/v_yb4q7n2h3fg94rlfrr165r0000gn/T/pip-build-ks26RP/python-docx/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n',  

'\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /var/folders/0c/v_yb4q7n2h3fg94rlfrr165r0000gn/T/pip-1SQvtb-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/var/folders/0c/v_yb4q7n2h3fg94rlfrr165r0000gn/T/pip-build-ks26RP/python-docx/

标签: pythonmacospython-2.7importerrorpython-docx

解决方案


python-docx在最近发布的 v0.8.9 中,在某些环境中安装时出现问题。对于大多数用户来说,安装 v0.8.10 应该可以解决这个问题。如果安装仍然失败(在某些 Linux 版本上),更新 setuptools 已报告修复它:

$ pip install -U setuptools

推荐阅读