IDE Python

今天下载了Python的IDE,下载下来还很好用的。

下载地址:http://sourceforge.net/projects/idlex/?source=directory

下载文件:idlex-1.11.2.zip

$ unzip idlex-1.11.2.zip 
$ cd idlex-1.11.2
$ ls
build          demos     idlex.py  PKG-INFO    scripts
Changelog.txt  idlexlib  license   README.txt  setup.py

打开README.txt文件可以看一下如何安装。

$ python setup.py --help  #查看帮助
Common commands: (see '--help-commands' for more)

  setup.py build      will build the package underneath 'build/'
  setup.py install    will install the package

OK,就按上面的安装就行了。

安装好了之后,看一下安装好了没有:

$ which idlex
/usr/bin/idlex

OK了!执行 idlex 命令就可以打开Python Shell窗口。

IDE Python_第1张图片

这个IDE的优势在于,它有自动提示补全功能。当然还有其它我没有看到的功能。

你可能感兴趣的:(python,pyqt4)