Python + Pylons環境安裝

來源:互聯網
上載者:User

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/
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.