環境搭建(因爲window下不支持uwsgi的安裝,故在Linux-centos下嘗試環境搭建)html
pip install uwsgi
編寫test.py腳本測試是否安裝成功python
def application(env,start_response): start_response('200 Ok',[('Content-Type','text/html')]) return [b"hello world"]
uwsgi --http :8001 --wsgi-file test.py
注意:若執行該命令時報錯bash: uwsgi: command not found,解決辦法是建立軟連接:ln -s /usr/local/python3/bin/uwsgi /usr/bin/uwsgi
瀏覽器訪問:http://10.1.1.71:8001/ 看到以下界面則證實 uwsgi 安裝成功centos