2013-12-18 42 views
1

Azure Django網站只正式支持Python 2.7和Django 1.4,但我想知道是否可以使用Python 3.3和Django 1.6來設置Azure Django網站。 This official Azure tutorial狀態:Azure網站使用python3和Django

Note: Windows Azure web sites now come with Python 2.7 and wfastcgi handler 
pre-installed. However, web frameworks such as Django are not included. You can 
still use a different Python interpreter if you prefer. You just need to include 
it in the Git repository and configure the web site to use that interpreter 
instead of the Python 2.7 interpreter already installed. 

這聽起來像你對我可以將其設置爲使用不同的Python解釋器,雖然你可能也必須提供自己的wfastcgi處理器和Django的安裝,如果你做到這一點。本教程還會告訴您如何指向要使用的解釋器的位置。

Python網站提供了安裝程序,但是如何將Python解釋器所需的所有內容都放到一個文件夾中以放入git repo中? /Library/Frameworks/Python.framework/Versions/3.3中是否需要所有內容?那麼對於Django和wfastcgi呢?有沒有其他人試過這個?

回答