However, when testing the package, I am met with a “ModuleNotFoundError”. I already have tried reinstalling the package. I also tried following the instructions on the GitHub repo, but this did not work either.
Is anyone able to help me with this issue? Thanks!
this is usually the sign of some misconfiguration of the python interpreter / virtual environments.
Can you describe, how you are trying to run the given script?
I’m asking, cause i cannot reproduce your issue unfortunately.
$ python -m pip list
gets the installed packages, including specklepy
starting the python REPL and typing import specklepy
works without raising an ModuleNotFoundError
Could you please follow my steps to try to reproduce your issue?
Also please note, that I’m using python -m pip ... to install packages, to avoid path configuration errors around the python and the pip executables.
What caused the issue was that pip was installing the package a different location than then one my python was running from. So basically what gjedlickska said