PIP 설치

Lang_Development/Python / / 2012. 10. 31. 10:03
반응형

1. About

 - pip is a tool for installing and managing Python packages

 

2. Installation(http://www.pip-installer.org/en/latest/installing.html)

2.1 Using the installer
# cd /tmp

# curl http://python-distribute.org/distribute_setup.py  | python
# curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python

 

2.2 Alternative installation procedures
# cd /tmp
# curl -O http://pypi.python.org/packages/source/p/pip/pip-1.0.tar.gz
# tar xvfz pip-1.0.tar.gz
# cd pip-1.0
# python setup.py install
# Installing the development version

 

2.3 Installing the development version
# cd /tmp
# git clone https://github.com/pypa/pip.git
# cd pip
# python setup.py install

 

반응형

'Lang_Development > Python' 카테고리의 다른 글

[Python] llvmlite, numba  (0) 2019.02.18
[Python] numpy & scipy  (0) 2014.01.09
설치된 Python 패키지 및 모듈 확인  (0) 2012.06.07
Biopython 설치  (0) 2012.06.06
easy_install 설치  (0) 2012.06.06
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기