반응형

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  설치된모듈이름










반응형
Posted by 자유프로그램
,