import docx error

Grant Edwards grant.b.edwards at gmail.com
Wed May 10 12:55:31 EDT 2017


On 2017-05-10, RRS1 via Python-list <python-list at python.org> wrote:

> I am very new to Python, have only done simple things     >>>print("hello world") type things.  I've really been looking forward to using Python.  I bought Two books, downloaded Python 3.6.1 (32 & 64) and each time I try this:
>
>
>>>> import docx
>
> I get errors. 
>
> Traceback (most recent call last):
> File "<stdin>", line 1 in <module>
> ModuleNotFoundError: No module named docx

You need to install the docx module:

 https://pypi.python.org/pypi/docx
 https://pypi.python.org/pypi

-- 
Grant Edwards               grant.b.edwards        Yow! PARDON me, am I
                                  at               speaking ENGLISH?
                              gmail.com            




More information about the Python-list mailing list