Muthu G
Muthu G

Reputation: 21

Starting Celery worker in windows

I'm trying to start celery worker in windows 7 with the following command

celery worker -A routes.celery --loglevel=info

result of the above command is

c:\users\xxxxx\appdata\local\continuum\anaconda2\python.exe: can't open file 'C:\Users\xxxxx\AppData\Local\Continuum\Anaconda2\Scripts\celery': [Errno 2] No such file or directory

is command "celery" is designed only for Unix-like system? if so then how to start celery worker from python script instead of command line.

Upvotes: 2

Views: 951

Answers (1)

or aspir
or aspir

Reputation: 70

You probably didn't install celery package on your machine. That is why your Python doesn't recognize 'celery' command.

Upvotes: 1

Related Questions