error: can’t copy ‘docx\templates\default-docx-template’: doesn’t exist or not a regular file
直接下载python-docx https://pypi.org/project/python-docx/#files
解压后删除\python-docx-0.8.10\docx目录下的templates文件夹,记得提前备份。
在cmd下切换到\python-docx-0.8.10目录,运行python setup.py install 命令,可以安装成功。
此时在python下运行
from docx import Document
doc = Document()
会报错,提示docx.opc.exceptions.PackageNotFoundError: Package not found
后面会跟一个文件,参照这个文件的位置,到\lib\site-packages\python_docx-0.8.10-py3.5.egg\docx\目录下,把之前备份好的templates文件夹粘贴回来。