notebook.community
Edit and run
PyDev IDE 설치 방법
Python IDE 종류
Eclipse with PyDev
http://www.pydev.org/
MSVS with PTVS
http://microsoft.github.io/PTVS/
PyCharm
https://www.jetbrains.com/pycharm/
Eclipse 설치
Java SE Development Kit (JDK) 설치
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Eclipse 설치
https://eclipse.org/downloads/
Eclipse Installer 또는 Eclipse for Java Developer 설치
PyDev 설치
http://www.pydev.org/manual_101_install.html
Eclipse 시작
메뉴 > Help > Install New Software > "
http://pydev.org/updates
" 주소 입력
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