初次使用uwsgi:no python application found, check your startup logs for errors

來源:互聯網
上載者:User

標籤:file   python3   body   執行   pip   style   whoami   uwsgi   html   

按照文檔,首先寫一個test.py的檔案,進行測試是否安裝成功

1 def application(env, start_response):2     start_response(‘200 OK‘, [(‘Content-Type‘,‘text/html‘)])3     return ["Hello World"]

 

結果剛開始既不顯示內容,也不現實錯誤

仔細查看運行回顯:出現了一段 沒有使用 pcre,於是重新安裝 uwsgi

首先執行

sudo pip uninstall uwsgi

出現了 沒有目錄許可權的提示

執行, sudo chown -R $(whoami) /***/http

然後重新執行, sudo pip uninstall uwsgi

卸載完成

重新安裝,這次沒有採用pip install uwsgi

而是,直接在https://pypi.python.org/pypi/uWSGI/ 進行下載tar包

執行

tar -xvf uwsgi-2.0.15.tar.gz

cd uwsgi-2.0.15

make

重新執行,結果一直顯示 no python application found, check your startup logs for errors

查看手冊,發現python3,需要使用下面的代碼

1 def application(env, start_response):2     start_response(‘200 OK‘, [(‘Content-Type‘,‘text/html‘)])3     return [b"Hello World"]

可是仍舊不行

重新查看手冊,發現,需要在命令列添加參數 --plugin python

執行下面命令列: 

uwsgi --plugin python --http :8001 --wsgi-file test.py

重新訪問 localhost:8001

就可以看到 成功的顯示了 ‘Hello world‘

 

PS:附件為uwsgi的手冊

https://media.readthedocs.org/pdf/uwsgi-docs-additions/latest/uwsgi-docs-additions.pdf

 

初次使用uwsgi:no python application found, check your startup logs for errors

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.