'"No module named 'docx'" error but "requirement already satisfied" when I try to install
From what I've read, it sounds like the issue might be that the module isn't in the same directory as my script. Is that the case? If so, how do I find the module and move it to the correct location?
Edit In case it's relevant - I installed docx using easy_install, not pip.
Solution 1:[1]
I use pycharm, created a project, you can choose which interpreter you want to use tu run your program, a common problem is having 2 interpreters and installing docx in one, and launching with the other interpreter. Also check the Lib included the packages of docx.
Solution 2:[2]
pip show docx
This will show you where it is installed. However, if you're using python3 then
pip install python-docx
might be the one you need.
Solution 3:[3]
Please install python-docx. Then you import docx (not python-docx)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | RES |
Solution 2 | dweeb |
Solution 3 | Dzung Nguyen |