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
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.