I get an ImportError exception somewhere in the code, but the same module can be imported safely at startup of the application. I\'m curious to see which paths
ImportError
The path locations that python checks by default can be inspected by checking sys.path.
import sys print(sys.path)