Python -- The eric Python IDE

最近在看Qt4, 结果就看到eric这个为了Python与Ruby开发的IDE工具。它本身是用Python+Qt写出来的,因此这正可以当作希望学习Python与 Qt者的一个好範例,当这个语言可以自己写出来一个IDE来开发自己的时候,其实我觉得这就代表它的功能是很普遍性的!
当你希望使用eric的时候,除了下载eric外,你还需要

Python -- 你要学习它,怎会不下载它呢?!我用的是2.5.2版Qt4 -- 你可以下载4.4.0 open source版,顺带你就需要下载MinGW(我用5.1.4版,gcc是3.4,记得一定要下载make)QScintilla2, sip and PyQt4 -- 这三个都是使用eric必要的套件, 都可以在Riverbanking Computing的网站找到并下载.这三个套件的使用版本是2.2, 4.7.6, 4.4.2
[-]Summary Only....
準备事项
下载之后,因为都需要解开到一个目录里面,你一定要清楚你所安装的目录在哪里,以下指令都是乡对于套件的目录所给的路径.

步骤:

Install Python,Qt4--这两个都是执行档,轻鬆简单,甚至...就是一步步地按下去就好.但是Qt4要记得在安装好了之后run一下build debug libraries.

Build and install sip

python configure.py -p win32-g++
make
make install

Build and install QScintilla2

cd Qt4
qmake qscintilla.pro
make
make install

Build and install PyQt4

python configure.py
make
make install

Build and install QScintilla2 Python bindings

cd Python
python configure.py
make
make install
copy Qscintilla2\Qt4\Release\qscintilla2.dll c:\windows\system32

Install eric4
python install.py

相关网址
http://www.python.org/
http://trolltech.com/products/qt/
http://www.riverbankcomputing.co.uk/news
http://www.die-offenbachs.de/eric/index.html


关于作者: 网站小编

码农网专注IT技术教程资源分享平台,学习资源下载网站,58码农网包含计算机技术、网站程序源码下载、编程技术论坛、互联网资源下载等产品服务,提供原创、优质、完整内容的专业码农交流分享平台。

热门文章