Eric5 is a perfect IDE for Python,Here I will introduce how to install it in your CentOS 6.0+.
First, you need some software as the fellowing list:
Qt4:http://qt-project.org/downloads
Eric5:http://eric-ide.python-projects.org/eric-download.html
PyOt4:http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-4.9.1.tar.gz
SIP4.13:http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.13.2.tar.gz
Qscintilla2:http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/QScintilla-gpl-2.6.1.tar.gz
Python3.2.3:http://www.python.org/ftp/python/3.2.3/Python-3.2.3.tar.bz2
ALL Software you can find in http://eric-ide.python-projects.org/eric-download.html
You should install the software as the fellowing order:
1.Python
Extract the tar.bz2 file
cd Python-3.2.3
./configure
make (about 20 minutes)
make install
Before install Qt4, you'd better make sure that libX11-devel,libXext-devel, libXtst-devel
2.Qt4
Extract the tar.bz2 file
cd Qt4
./configure
gmake (about 1 hour,depend to your hardware)
make install
then you should edit your .bash_profile, make sure that add the Qt4/bin/qmake is in your PATH
3.sip4
cd sip-4.13.2
python3 configura.py
make
make install
4.QScintilla2
cd QScintilla-gpl-2.6.1
cd Qt4Qt5
qmake qscintilla.pro
make
make install
5.PyQt4
cd PyQt-x11-gpl-4.9.1
python3 configure.py
make
make install
6.Python Bindings
cd QScintilla-gpl-2.6.1
cd Python
python3 configure.py
make
make install
Now you can install Eric
cd eric5-5.2.1
python3 intall.py
Winterh 于 2013-01-18 11:39:29发表:
路过