I am trying to install the SimPy module so that I can use it in IDLE. However, everytime I try to import in IDLE, I got an error. I already tried reinstalling Python and Pip
What worked for me is that adding the module location to the sys.path
import sys sys.path.insert(0, r"/path/to/your/module")