import sys print sys.path
Hi Johanna,
Python looks in the directories that are part of the module search path. These directories
are listed in the sys.path variable from the sys module. To list where the Python looks for modules, print out the value of the sys.path variable. For example:import sys print sys.path
If the previous path of this module is located there, this could be the reason you are receiving this error. You can remove the path by using sys.path.remove.
Hi Johanna,
Python looks in the directories that are part of the module search path. These directories
are listed in the sys.path variable from the sys module. To list where the Python looks for modules, print out the value of the sys.path variable. For example:import sys print sys.path
If the previous path of this module is located there, this could be the reason you are receiving this error. You can remove the path by using sys.path.remove.