#title Ipython설치하기 1. python2.7 설치 2. 환경변수에 python path 추가 {{{ C:\Python27;C:\Python27\Scripts;C:\Python27\Lib\site-packages; }}} 만약, 임시로 cmd에서 path를 추가하려면,, {{{ set PATH=%PATH%;C:\Python27;C:\Python27\Scripts;C:\Python27\Lib\site-packages }}} 3. ez_setup.py 실행 (attachment:Ipython설치하기/ez_setup.zip) {{{ python ez_setup.py }}} 4. cmd에서.. {{{ easy_install pip }}} 5. cmd에서 {{{ pip install distribute pip install pyreadline pip install ipython }}} 만약 잘 안되면 pip uninstall distribute 와 같이 uninstall 후 재설치. 6. cmd에서 {{{ ipython }}} 이렇게 나와야 한다. {{{ Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] Type "copyright", "credits" or "license" for more information. IPython 1.0.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: }}}