I'm using django v1.7.0b4 and celery v3.1.1. Followed steps according to the django installation guide. But I'm stuck with the below error.
$ ./manage.py celeryd --help Starting server in DEVELOPMENT Mode Traceback (most recent call last): File "./manage.py", line 10, in <module> execute_from_command_line(sys.argv) File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 427, in execute_from_command_line utility.execute() File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 419, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/Library/Python/2.7/site-packages/django_celery-3.1.10-py2.7.egg/djcelery/management/base.py", line 77, in run_from_argv return super(CeleryCommand, self).run_from_argv(argv) File "/Library/Python/2.7/site-packages/django/core/management/base.py", line 284, in run_from_argv parser = self.create_parser(argv[0], argv[1]) File "/Library/Python/2.7/site-packages/django/core/management/base.py", line 265, in create_parser option_list=self.option_list) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py", line 1214, in __init__ add_help=add_help_option) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py", line 1256, in _populate_option_list self.add_options(option_list) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py", line 1039, in add_options self.add_option(option) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py", line 1020, in add_option self._check_conflict(option) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py", line 995, in _check_conflict option) optparse.OptionConflictError: option -C/--no-color: conflicting option string(s): --no-color
Is any one else facing the same issue ?
Edited :
Working good in django v1.6.5.