Lang_Development/Python
PIP 설치
변익수
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
반응형