1

我正在尝试按照本指南为我的 Flask 应用程序提供 uWSGI:http ://flask.pocoo.org/docs/deploying/uwsgi/

但是,当我尝试运行时uwsgi,出现以下问题:

(venv)deniz@lister:~/sites/site-lister$ uwsgi -s /tmp/lister.sock --module flood --callable app
uwsgi: unrecognized option '--module'
getopt_long() error

我猜这是版本不匹配,因为我的 uwsgi 版本是 1.2.3-debian。但如果这就是问题所在并且我是 Ubuntu 新手,我如何在不手动构建所有内容的情况下正确安装更新版本?

4

2 回答 2

0

如果你想卸载 uwsgi,你可以这样做:

pip uninstall uwsgi

然后重新安装最新版本:

pip install uwsgi

然后使用 uwsgi 将此文档用于您的烧瓶应用程序:

http://uwsgi-docs.readthedocs.org/en/latest/Embed.html

于 2013-04-17T21:47:07.330 回答
0

请尝试以下文档,我已经用它建立了一些 Flask 站点。

http://library.linode.com/web-servers/nginx/python-uwsgi/ubuntu-12.04-precise-pangolin

于 2013-04-18T05:09:02.977 回答