我正在尝试在Windows 7中安装python-pptx-0.5.7软件包。 我所做的如下:
1) Downloaded the python-pptx-0.5.7.tar file from website.
2) Unzipped it and kept it in the Python34/Script folder.
3) I used command prompt to install the package as
setup.py install.
Here is the ouptput of the command that I wrote in command prompt
c:\Python34\Scripts\python-pptx-0.5.7>setup.py install
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied.
使用“pip”的第二种方法
c:\Python34\Scripts>pip install python-pptx
收集python-pptx 下载python-pptx-0.5.7.tar.gz(5.2MB) 100%| ################################ 5.2MB 25kB / s 收集lxml> = 3.1.0(来自python-pptx) 正在下载lxml-3.5.0.tar.gz(3.8MB) 100%| ################################ 3.8MB 41kB / s 要求已经满足(使用--upgrade升级):pillow> = 2.6.1在c:\ python34 \ lib \ site-packages中(来自python-pptx) 收集XlsxWriter> = 0.5.7(来自python-pptx) 下载XlsxWriter-0.7.7-py2.py3-none-any.whl(133kB) 100%| ################################ 135kB 62kB / s 为收集的包构建轮子:python-pptx,lxml 为python-pptx运行setup.py bdist_wheel 存储在目录中:C:\ Users \ praveen \ AppData \ Local \ pip \ Cache \ wheels \ 1f \ fa \ 42 \ bbc04bb0ef4be4cd49f228cc1fa3280bb99c1a37d3b193b81b 为lxml运行setup.py bdist_wheel 错误:需要Microsoft Visual C ++ 10.0(无法找到vcvarsall.bat)。
lxml的构建轮失败 成功构建了python-pptx 无法构建lxml 错误:b“'xslt-config'未被识别为内部或外部命令, \ r \ noperable程序或批处理文件。\ r \ n“ **确保安装了libxml2和libxslt的开发包**
答案 0 :(得分:-1)
请follow the official Python package installation guide。
软件包的安装方式如下:
pip install python-pptx
从pypi.python.org自动下载。