I use gunicorn to deploy my project all the time, but today, in my new project, it raise a error.
I check here and there, google around, but it doesn't work.
Maybe there was wrong with me.
So I create a new project to test, here is all my process:
$ virtualen env
$ source env/bin/active
$ pip install django
$ pip install gunicorn
$ django-admin.py startproject test_project
$ cd test_project
$ django-admin startapp myapp
$ cd ..
$ gunicorn test_project.wsgi:application
....
load_entry_point('gunicorn==19.0.0', 'console_scripts', 'gunicorn')()
....
raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
I'm crazy about this error... oh fk.
Any one can help me ? You r my god.
Thank you very much!