Hi Johanna,Python looks in the directories that are part of the module search path. These directoriesare 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.pathIf 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.
import sys print sys.path
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.