Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: No module named observers after installed watchdog

Im trying to run official watchdog simple example after installing the watchdog module using pip: pip install watchdog, and i get an error:

from watchdog.observers import Observer
ImportError: No module named observers

Can someone please help me?

like image 606
scythargon Avatar asked Aug 06 '12 17:08

scythargon


1 Answers

I figured the cause for the ImportError issue. My module name was the same as the module I was trying to import. Renaming my module to something else other than watchdog or observers resolved this issue. Thanks all for your help!

like image 74
scythargon Avatar answered Oct 17 '22 23:10

scythargon