如何使用PIP安装python-docx?

时间:2019-01-25 14:25:29

标签: python python-2.7 python-requests python-docx

我在Mac上的终端中输入了以下命令:sudo pip install python-docx --user。事情发生了,东西在终端中像疯子一样突然冒出。突然...一个错误!这有点让我讨厌。出现以下内容:

   error: can't copy 'docx/templates/default-docx-template': doesn't exist or not a regular file

    ----------------------------------------
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/private/tmp/pip-install-NbCMpP/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 /private/tmp/pip-record-rulxzG/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /private/tmp/pip-install-NbCMpP/python-docx/

我只想让docx出现在我该死的Pycharm的Lib文件中。为什么好人会发生坏事?提前致谢。我是一个完整的初学者,所以假装您正在和五岁的孩子聊天。

1 个答案:

答案 0 :(得分:0)

使用pip install标志运行--user时,程序包将安装在用户目录(as explained here)中。因此,您不需要超级用户特权,也不需要使用sudo

您可以只运行:

pip install python-docx --user

也许可以正常工作(我在Mac上进行了测试,效果很好)。