Installed pip install openpyxl, Requirement already satisfied, but, still have error

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)
in
----> 1 import openpyx1 as op

ModuleNotFoundError: No module named ‘openpyx1’

Please assist.

This was answered over on python-forum.io. The module is named openpyxl (with a letter at the end). Your program is trying to import openpyx1 (with a number at the end).