Python Forum
Installed pip install openpyxl, Requirement already satisfied, but, still have error - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Installed pip install openpyxl, Requirement already satisfied, but, still have error (/thread-34958.html)



Installed pip install openpyxl, Requirement already satisfied, but, still have error - jonah88888 - Sep-20-2021

Hi,

I faced an error when trying to openpyxl. Thus, I install with pip install openpyxl. It was success.

Requirement already satisfied: openpyxl in c:\users\jonah\anaconda3\lib\site-packages (3.0.4)Note: you may need to restart the kernel to use updated packages.
Requirement already satisfied: et-xmlfile in c:\users\jonah\anaconda3\lib\site-packages (from openpyxl) (1.0.1)
Requirement already satisfied: jdcal in c:\users\jonah\anaconda3\lib\site-packages (from openpyxl) (1.4.1)

But, afterwhich, the same error still appear

---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-7-2ab2e58bdce2> in <module>
----> 1 import openpyx1 as op

ModuleNotFoundError: No module named 'openpyx1'

Please assist.


RE: Installed pip install openpyxl, Requirement already satisfied, but, still have error - ndc85430 - Sep-20-2021

Is the module name correct? Is the last character meant to be a 1, or should it be an lowercase L?


RE: Installed pip install openpyxl, Requirement already satisfied, but, still have error - buran - Sep-20-2021

You have a typo - openpyx1
it should be lowercase letter l - openpyxl


RE: Installed pip install openpyxl, Requirement already satisfied, but, still have error - jonah88888 - Sep-24-2021

Thank you.