On Windows 7 + Apache2 + mod_wsgi + Python 2.6
I am getting the above error when I try to run the worker server
python manage.py celeryd -l info
as described in the 'first steps with django' docs.
However I can do this:
$ python manage.py shell
Python 2.6.3 (r263:75183, Oct 5 2009, 14:41:55) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> import multiprocessing
>>> logger = multiprocessing.get_logger()
>>> logger
<logging.Logger instance at 0x02F8C4E0>
>>>
So it seems like the obvious parts are in place. Please help!