无法使用 gunicorn 运行 (Python) 装瓶应用
Unable to run (Python) bottle app using gunicorn
我刚刚开始使用 Bottle。我在 GitHub 上找到了一个示例应用程序。该示例只有一个 server.py 文件,如下所示
import bottle
APP = bottle.Bottle()
@APP.get('/')
def index():
return '<p>Hello</p>'
if __name__ == '__main__':
bottle.run(application=APP)
requirements.txt 文件有
bottle
gunicorn
作为依赖项。我正在使用 Python 3.7.2。 运行pip install -r requirements.txt后,我运行pythonserver.py。服务器在8080端口正常启动
我试过 运行 服务器使用 gunicorn 如下
gunicorn -w 2 -b 0.0.0.0:8080 server:app
这会出错,服务器不会启动。 gunicorn 命令有什么问题?
gunicorn -w 2 -b 0.0.0.0:8080 server:APP
感谢 Klaus D 指出
我刚刚开始使用 Bottle。我在 GitHub 上找到了一个示例应用程序。该示例只有一个 server.py 文件,如下所示
import bottle
APP = bottle.Bottle()
@APP.get('/')
def index():
return '<p>Hello</p>'
if __name__ == '__main__':
bottle.run(application=APP)
requirements.txt 文件有
bottle
gunicorn
作为依赖项。我正在使用 Python 3.7.2。 运行pip install -r requirements.txt后,我运行pythonserver.py。服务器在8080端口正常启动
我试过 运行 服务器使用 gunicorn 如下
gunicorn -w 2 -b 0.0.0.0:8080 server:app
这会出错,服务器不会启动。 gunicorn 命令有什么问题?
gunicorn -w 2 -b 0.0.0.0:8080 server:APP
感谢 Klaus D 指出