setuptools, easy_install, pip 설치하기
환경 : windows 7 32bit, python 2.7.5
setuptools 설치하면 python Script 폴더 내부에 easy_install 도 설치된다. 내부적으로 easy_install 사용한다.
https://pypi.python.org/pypi/setuptools#easy-install
Once installation is complete, you will find an easy_install program in your Python Scripts subdirectory.
...
Setup scripts using setuptools now always install using easy_install internally, for ease of uninstallation and upgrading.
http://pythonhosted.org/setuptools/easy_install.html
Easy Install is a python module (easy_install) bundled with setuptools that lets you automatically download, build, install, and manage Python packages.
<setuptools 사이트>
http://pythonhosted.org/setuptools/index.html#
< 쉽게 설치 하는 방법 >
windows용 setuptools 설치 실행파일
http://www.lfd.uci.edu/~gohlke/pythonlibs/#setuptools
windows용 pip 설치 실행파일
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pip
** setuptools, pip 설치후 windows Path 에 다음을 추가하라!
C:\Python27\;C:\Python27\Scripts\
< pip 옵션 >
** 내 컴퓨터에 설치된 모듈 목록 보기
** 설치된 모듈의 위치정보 등 알아내기
-- pip show 설치된모듈이름
'python' 카테고리의 다른 글
파일내용 hex dump 로 보기 (0) | 2014.04.25 |
---|---|
python으로 윈도우 terminal 명령어 실행하기 (0) | 2014.04.24 |
문자열 코드 실행 --- eval, exec, compile (0) | 2014.04.22 |
원격접속 가능한 ipython notebook server 설정하기 - windows (0) | 2014.04.17 |
Python - 부호있는 short data type 으로 변환하기. (0) | 2014.04.11 |