1、安裝Python
Python安裝檔案的下載可從官方網站上進行下載
http://www.python.org/
目前主要安裝有以下兩種:
1、Python 2.7.2
2、Python3.2
安裝完成之後修改系統內容變數
系統內容變數添加Python的安裝路徑,如:D:\Program Files\Python27\
cmd執行python
如: C:\Users\libing>python
2、安裝Pylons
安裝Pylons方式:
1、簡單方式
下載ez_setup.py
http://peak.telecommunity.com/dist/ez_setup.py
假設下載的ez_setup.py儲存在E:\Python\Pylons,執行cmd如下:
>>>C:\Users\libing>cd /d E:\Python\Pylons
>>> E:\Python\Pylons>python ez_setup.py Pylons
等待安裝完成後,添加系統內容變數D:\Program Files\Python27\Scripts\
測試Pylons是否安裝成功
Cmd執行以下:>>>C:\Users\libing>paster
3、建立Pylons項目
建立Pylons項目步驟如下:
假設建立項目為helloworld,儲存路徑為 E:\Projects\
>>>C:\Users\libing> cd /d E:\Projects
>>>E:\Projects>paster create -t pylons helloworld
>>>E:\Projects>cd helloworld
運行Pylons項目
>>>E:\Projects\helloworld>paster serve --reload development.ini
運行上述命令成功後系統出現如下提示:
Starting subprocess with file monitor
Starting server in PID 6636.
serving on http://127.0.0.1:5000
在瀏覽器中輸入http://127.0.0.1:5000/,如果能看到 Welcome to Pylons字樣,則已成功配置pylons開發環境。
4、安裝SqlAlchemy
下載SqlAlchemy
http://www.sqlalchemy.org/
安裝SqlAlchemy
假設下載後的SqlAlchemy儲存路徑為:E:\Python\SQLAlchemy-0.7.0
執行cmd如下:>>>C:\Users\libing> cd /d E:\Python\SQLAlchemy-0.7.0
>>> E:\Python\SQLAlchemy-0.7.0>python setup.py install
檢查SqlAlchemy是否安裝成功>>>C:\Users\libing>python
>>>import sqlalchemy
>>>sqlalchemy.__version__
5、安裝MySQL
下載MySQL
http://www.mysql.com/
6、安裝Python MySQL
下載安裝Python MySQL
http://sourceforge.net/projects/mysql-python/