安装uwsgi(最好安装到usr/local目录下)
1.安装
pip3 install uwsgi
这个是看自己的pip版本了一般现在都是pip3了
查看自己安装的版本
uwsgi --version
安装好后:
cp uwsgi /usr/sbin/
2、我们可以写个小程序测试一下效果vim test.py
注意是python3和python2的区别,以下是python3的测试代码
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]
3、启动uwsgi
uwsgi --http-socket :8001 --wsgi-file test.py