python pptx模块安装出错
最近准备用python开发一套自动填充ppt的code,但是发现安装的时候竟然安装不了,我用的是pip install python-pptx的命令,老是提示ImportError: cannot import name 'utils',请问有童鞋遇到过相同的情况么?我的python版本是3.5.2的,我看有人说pptx只能针对3.4及更低版本,如果我这种3.5以上的版本有什么办法么?百度上的各种教程都试了,还是没能安装成功
回答:
多半是 utils
模块或文件缺失。
回答:
https://python-pptx.readthedo...[文档]
Currentlypython-pptxrequires Python 2.7, 3.3, 3.4, or 3.6. The tests are run against 2.7 and 3.6 on Travis CI.
Dependencies
- Python 2.6, 2.7, 3.3, 3.4, or 3.6
- lxml
- Pillow
- XlsxWriter (to use charting features)
恰好不支持3.5,可以试试3.6
以上是 python pptx模块安装出错 的全部内容, 来源链接: utcz.com/p/937697.html