Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named openpyxl - Python 3.6 - OSX

I've installed openpyxl from the Terminal using

pip3 install openpyxl

without any problems. I've even double-checked by simply running import openpyxl from the Terminal window once Python is running, and it imports no problem.

The problem starts when I try and import openpyxl from a script I'm building to work with a spreadsheet. I'm using Sublime Text and can't even get past the import openpyxl at the beginning of the script without running into the following error:

Traceback (most recent call last): File "/Users/wcw/Desktop/test.py", line 1, in import openpyxl ImportError: No module named openpyxl

How can this be happening? I know I've installed openpyxl correctly from the Terminal window without any errors so how can my script not find the module?

like image 351
Will Avatar asked Nov 07 '22 21:11

Will


1 Answers

Try to do:

pip3 install --user openpyxl

Doing the --user worked for me when I tried to run my .py files with matplot lib modules which worked in 3.5 but not in 3.6.

like image 179
Vignesh Tamilmani Avatar answered Nov 14 '22 22:11

Vignesh Tamilmani