我正在尝试使用Python生成.docx
个文件。我在网上搜索并发布了一个模块:
https://github.com/mikemaccana/python-docx/blob/master/README.markdown
它表示使用easy_install
或pip
安装,我不知道该怎么做。我去了python网站,根据python文档中的说明安装了pip:
http://guide.python-distribute.org/installation.html
所以我下载并按照说明操作:
$ tar xzf pip-0.7.2.tar.gz
$ cd pip-0.7.2
$ python setup.py install
但是当我执行python setup.py install时,我收到错误消息:
Johns-MacBook-Pro:pip-0.7.2 John$ python setup.py install
Traceback (most recent call last):
File "setup.py", line 2, in <module>
from setuptools import setup
ImportError: No module named setuptools
有人可以帮我逐步安装newb吗?在此先感谢您的所有帮助!
答案 0 :(得分:1)
Pip可以直接从git存储库安装
你只需要告诉他使用git并给他git rep的URL
pip install git+git://github.com/mikemaccana/python-docx.git
您还需要安装lxml(如setup.py中所述)和PIL(当您尝试导入模块时将会发现)。
pip install PIL
pip install lxml
pip install python-dateutil