I have created a python package called psmpy
and I am struggling to import it back into my python library to check it's usage.
When I run, from psmpy import PsmPy
I am getting the error:
ModuleNotFoundError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_12528/438942766.py in <module>
----> 1 from psmpy import PsmPy
ModuleNotFoundError: No module named 'psmpy'
But the module is up on pypi.org and I can see it installed when I run pip list
in the list of current packages installed. Your help is greatly appreciated.