Python开发:Windows下Python+Eclipse+Pydev开发环境配置

一、配置前的准备:

  1、安装jdk:

    下载地址:

    https://www.oracle.com/technetwork/java/javase/downloads/index.html

    Python开发:Windows下Python+Eclipse+Pydev开发环境配置

    Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  2、安装Eclipse:

    下载地址:

    http://www.eclipse.org/downloads/

    Python开发:Windows下Python+Eclipse+Pydev开发环境配置

    Eclipse无需安装,解压即可。

  3、安装Python:

    下载地址:

    https://www.python.org/

    Python开发:Windows下Python+Eclipse+Pydev开发环境配置

    Python开发:Windows下Python+Eclipse+Pydev开发环境配置

二、在Eclipse中安装Pydev插件:

  进入Eclipse界面中,点击Help,选择Install New Software...

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  点击Add...:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  分别在Name和Location中填入Pydev和http://pydev.org/updates:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  点击OK,等待一会会出现以下界面,勾选Pydev:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  然后就一直next直到finish就好。

  Eclipse中会出现Install Software的进度条,百分比满了则是安装完毕,此时需要重启Eclipse来生效。

 三、Pydev解释器配置:

  window-》preferences:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  选择Interpreters下的Python Interpreters,点击Browse for python/pypy exe

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  选择指定的python解释器路径:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

四、新建pydev项目:

  切换到PyDev开发模式:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  在左侧New-》Other中选择PyDev Project

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  填写项目名称,并选中Create 'src' folder and add it to thePYTHONPATH

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  Finish,项目结构如下:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  选中src,右击新建PyDev Package:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

五、测试运行:

  在PyDevTest项目中,新建images文件夹并放置图片如下:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  在_init_.py文件中输入代码(路径根据自己图片来定),调用opencv处理图片:

import cv2
image = cv2.imread('D:\workSpace\PyDevTest\images/1.jpg', cv2.IMREAD_GRAYSCALE)
cv2.imshow('image', image)
print(image.shape)
k = cv2.waitKey(0)
if k == 27:
cv2.destroyAllWindows()
elif k == ord('s'):
cv2.imwrite('D:\workSpace\PyDevTest\images/test.jpg', image)
print("保存成功!")
cv2.destroyAllWindows()

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  运行:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  结果如下:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

  按下S键,保存灰度处理后的图片:

  Python开发:Windows下Python+Eclipse+Pydev开发环境配置

上一篇:Python简介及开发环境搭建


下一篇:Logback的配置和使用(终极)