lyd2004888 发表于 2017-4-25 09:14:23

Python 开发环境 -- Eclipse开发环境

在Eclipse中配置python开发环境


1.下载python 安装包.python-2.4.2.msi.并安装。这个过程很简单,不多说。

在安装完成之后, 关闭安装程序, 打开 开始->程序->Python 2.4->IDLE (Python GUI)。 您将看到类似如下的信息:

Python 2.4.3 (#69, Mar 29 2006, 17:35:34) on win32
Type "copyright", "credits" or "license()" for more information.

    ****************************************************************
    Personal firewall software may warn about the connection IDLE
    makes to its subprocess using this computer's internal loopback
    interface.This connection is not visible on any external
    interface and no data is sent to or received from the Internet.
    ****************************************************************
   
IDLE 1.1.3      
>>>


2.安装pydev插件.

第一种方法:下载插件pydev:http://sourceforge.net/projects/pydev/ (http://www.fabioz.com/pydev/zips/)
同时下载Pydev Extention插件
安装的插件的过程也不再多说,很简单。

第二种方法:将features和plugins文件夹里的文件,直接COPY到eclipse的插件目录。

3.配置插件

windows->perferences->pydev->interpreter-python
在最上面的 Python interpreters (e.g.:python.exe) 的右边,
点击 New... 按钮,选择python.exe所在地方(安装路径下找),确定,这样我们的eclipse下的python开发环境就配置好了。


4.测试
页: [1]
查看完整版本: Python 开发环境 -- Eclipse开发环境