Skip to content

Instantly share code, notes, and snippets.

@kkd927
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkd927/1feb40b3a279c156e14e to your computer and use it in GitHub Desktop.
Save kkd927/1feb40b3a279c156e14e to your computer and use it in GitHub Desktop.
how to install python-setuptools & pip on centos5.x (python2.7)
# 1. pip 설치를 위한 python-setuptools 다운
wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg
# 2. pip 설치를 위한 python-setuptools 설치
sh setuptools-0.6c11-py2.7.egg
# 3. easy_install 을 이용한 pip 설치
/usr/local/bin/easy_install pip
# 4. 업데이트 된 pip 을 심볼릭 링크 설정
ln -sf /usr/local/bin/pip2.7 /usr/bin/pip
# 명령어 복사는 하단의 view raw 를 클릭해주시면 됩니다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment