Stephen Holsapple
unread,Sep 25, 2012, 8:21:37 PM9/25/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to watchdo...@googlegroups.com
I need to run a module I wrote on a Solaris machine and I get the error:
Traceback (most recent call last):
File "./bin/glu-to-kafka", line 15, in <module>
from myapp.ingress.listeners import glu_service_listener
File "/export/home/eng/sholsapp/tools/apps/ingress/src/myapp/ingress/listeners/glu_service_listener.py", line 8, in <module>
from myapp.ingress.listeners import watchdog_listener
File "/export/home/eng/sholsapp/tools/apps/ingress/src/myapp/ingress/listeners/watchdog_listener.py", line 5, in <module>
from watchdog.events import FileSystemEventHandler
File "/export/home/eng/sholsapp/.virtualenvs/myapp/lib/python2.6/site-packages/watchdog/events.py", line 94, in <module>
from watchdog.utils import has_attribute
File "/export/home/eng/sholsapp/.virtualenvs/myapp/lib/python2.6/site-packages/watchdog/utils/__init__.py", line 47, in <module>
import ctypes.util
File "/export/ctools/lib/python2.6/ctypes/__init__.py", line 10, in <module>
from _ctypes import Union, Structure, Array
ImportError: No module named _ctypes
I was hoping I could use the module in the "os-independent" mode. Can I fix this? If not, are you away of any other Python modules that I can use on Solaris to watch a file system?
-Steve