Run python on windows apache: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
Line 18: Line 18:
== References ==
== References ==
* [https://docs.python.org/3/using/windows.html 3. Using Python on Windows — Python 3.6.4rc1 documentation]
* [https://docs.python.org/3/using/windows.html 3. Using Python on Windows — Python 3.6.4rc1 documentation]
* [[Heterogeneity interpreter integration]]


[[Category:Programming]]
[[Category:Programming]]
[[Category:Python]]
[[Category:Python]]

Revision as of 16:50, 15 August 2018

Run python on Windows/Apache

Troubleshooting

Error: 直接看到 Python 程式碼

檢查 Apache 設定檔,教學: Barlos Blog 部落格: 在 Windows 下安裝 Apache + Python

  • Apache 設定檔對應的資料夾 Options 有加上ExecCGI 該行設定範例 Options Indexes FollowSymLinks ExecCGI
  • Apache 設定檔 AddHandler 部分有加上.py 該行設定範例 AddHandler cgi-script .cgi .py

Error message: End of script output before headers: python_script.py (Server 500 error)

檢查 Python 程式第一行的宣告 #!C:/Python33/python

  • 宣告 #!C:/Python33/python 代表 C:\Python33\python.exe 檔案需要存在。
  • 但是因為 Python 版本可能更新,需要檢查版號是否正確。例如安裝 Python 3.6 版本,則要改成 #!C:/Python36/python
  • Icon_exclaim.gif 無效的宣告 #!C:/Windows/py

檢查 Python 程式是否有錯誤

  • 例如程式碼使用了 package,但是伺服器環境並未安裝該 package

References