Próbuję wdrożyć aplikację Django z Google App Engine.GAE nie widzę gunicorn, ale jest już zainstalowany
Mój plik app.yaml:
# [START runtime]
runtime: python
api_version: 1
threadsafe: true
env: flex
entrypoint: gunicorn -b :$PORT wsgi
runtime_config:
python_version: 3.4
env_variables:
CLOUDSQL_CONNECTION_NAME: ugram-mysql
CLOUDSQL_USER: root
handlers:
- url:/
script: wsgi.application
# [END runtime]
Ale kiedy biegnę gcloud app deploy
, aplikacja jest uruchomiona Deploy (5 minut), ale pojawia się błąd:
Updating service [default]...failed.
ERROR: (gcloud.app.deploy) Error Response: [9]
Application startup error:
/bin/sh: 1: exec: gunicorn: not found
Ale gunicorn jest już zainstalowany
mysupers-beta:~$ gunicorn
usage: gunicorn [OPTIONS] [APP_MODULE]
gunicorn: error: No application module specified.