MarryTorichelli
MarryTorichelli

Reputation: 19

No module named `pptx`

I try to import pptx (from pptx import Presentation) and get message "No module named pptx". I've installed pptx (pip install python-pptx). Running pip show python-pptx, I get: Name: python-pptx Version: 0.6.18 Summary: Generate and manipulate Open XML PowerPoint (.pptx) files Home-page: http://github.com/scanny/python-pptx Author: Steve Canny Author-email: [email protected] License: The MIT License (MIT) Location: c:\users\sheshe~1\appdata\local\r-mini~1\lib\site-packages Requires: Pillow, lxml, XlsxWriter Required-by:

Could you help me? What should I do else to import pptx?

Upvotes: 0

Views: 3087

Answers (1)

Saurav Rai
Saurav Rai

Reputation: 2367

Check this,

Using pip install, you'll install it for Python2, not for Python3. To make sure it gets installed for Python3, invoke pip from the interpreter, like this:

python3 -m pip install <package>

Hope this helps you.

Upvotes: 1

Related Questions