Python--Ubuntu系统下源码安装uWSGI和配置

一.uWSGI下载地址

https://uwsgi-docs.readthedocs.io/en/latest/Download.html

二.安装

1.下载

wget https://projects.unbit.it/downloads/uwsgi-2.0.17.1.tar.gz

2.解压

tar -zxvf uwsgi-2.0.17.1.tar.gz

3.进入到解压目录

cd uwsgi-2.0.17.1/

4.安装

python3 setup.py install

三.启动

如上图,这表明你的uwsgi已经在启动路径了。最后只需要结合项目进行配置,然后再运行。

四.参考资料

[1] uWSGI官方文档 https://uwsgi-docs.readthedocs.io/en/latest/

猜你喜欢

转载自blog.csdn.net/cckavin/article/details/85071547