2

Heroku の Django チュートリアルを進めていて、「別の WSIG サーバーの使用」までたどり着きました。

gunicorn を使用しようとすると、次のエラーが表示されます。

requirements.txt
Django==1.4.1
distribute==0.6.28
dj-database-url==0.2.1
psycopg2==2.4.5
gunicorn==0.14.6

Procfile
web: gunicorn djtut.wsgi -b 0.0.0.0:$PORT

(venv) C:\Users\xxxx\Documents\Python\djtut>foreman check
valid procfile detected (web)

(venv) C:\Users\xxxx\Documents\Python\djtut>foreman start
10:53:05 web.1  | started with pid 5652
10:53:06 web.1  | exited with code 1
10:53:06 web.1  | Traceback (most recent call last):
10:53:06 system | sending SIGKILL to all processes
10:53:06        |   File "C:\Users\xxxx\Documents\Python\djtut\venv\Scripts\
gunicorn-script.py", line 9, in <module>
(venv) C:\Users\xxxxx\Documents\Python\djtut>    

Heroku の開発サーバーを使用して正常に動作します。私は Windows 7 を使用しています。何かアイデアはありますか? OSの問題だと思いますか?

ありがとう、

AP

4

1 に答える 1

4

残念ながら、Gunicorn は Windows では動作しません。

于 2012-10-02T04:03:41.063 に答える