2008-07-21

Python -- The eric Python IDE

最近在看Qt4, 結果就看到eric這個為了Python與Ruby開發的IDE工具。它本身是用Python+Qt寫出來的,因此這正可以當作希望學習Python與Qt者的一個好範例,當這個語言可以自己寫出來一個IDE來開發自己的時候,其實我覺得這就代表它的功能是很普遍性的!

當你希望使用eric的時候,除了下載eric外,你還需要
1. Python -- 你要學習它,怎會不下載它呢?!我用的是2.5.2版
2. Qt4 -- 你可以下載4.4.0 open source版,順帶你就需要下載MinGW(我用5.1.4版,gcc是3.4,記得一定要下載make)
3. QScintilla2, sip and PyQt4 -- 這三個都是使用eric必要的套件, 都可以在Riverbanking Computing的網站找到並下載.這三個套件的使用版本是2.2, 4.7.6, 4.4.2

準備事項
下載之後,因為都需要解開到一個目錄裡面,你一定要清楚你所安裝的目錄在哪裡,以下指令都是鄉對於套件的目錄所給的路徑.

步驟:
1. Install Python,Qt4--這兩個都是執行檔,輕鬆簡單,甚至...就是一步步地按下去就好.但是Qt4要記得在安裝好了之後run一下build debug libraries.

2. Build and install sip
>python configure.py -p win32-g++
>make
>make install

3. Build and install QScintilla2
>cd Qt4
>qmake qscintilla.pro
>make
>make install

4. Build and install PyQt4
>python configure.py
>make
>make install

5. Build and install QScintilla2 Python bindings
>cd Python
>python configure.py
>make
>make install
copy Qscintilla2\Qt4\Release\qscintilla2.dll c:\windows\system32

6. Install eric4
python install.py

之後你在eric目錄裡面會找到eric4.bat(依照我的例子),執行它,你就會看到一個這樣的畫面!

恭喜你,可以開始用囉!!!

1 則留言:

Angela 提到...

請問Qt4 Open Source您是下載Windows的版本嗎? 如果是的話, 要如何在Windows下進行"安裝"?

那個 "install"檔案似乎按了沒有作用.

能否幫忙解釋一下? 謝謝.

- Python初學者