PyDev IDE 설치 방법

Python IDE 종류

Eclipse 설치

PyDev 설치

PyDev 설정

  • Run > Preference
  • PyDev > Interpreters > Python Interpreters
  • Advanced Auto Configuration
  • Select Python Binary
  • Apply > OK
  • Window > Prespect > Open Prespect > PyDev

PyDev 사용

  • Project
    • File > New > PyDev Project
    • Project Name: test
    • Finish
  • Module
    • File > New > PyDev Module
    • Name: module1
    • Finish
  • Edit
    x = 1
    y = 2
    z = x + y
    print x, y, z

PyDev 디버깅

  • breakpoint
  • stack
  • variable
  • watch