Skip to content

Instantly share code, notes, and snippets.

@thimslugga
Forked from nascimento/install_pip_suse11.sh
Created November 21, 2017 21:06
Show Gist options
  • Save thimslugga/ef6462c36fa4277883d3a947daeb4477 to your computer and use it in GitHub Desktop.
Save thimslugga/ef6462c36fa4277883d3a947daeb4477 to your computer and use it in GitHub Desktop.
Install pip on suse 11 and python 2.6
curl -O https://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz
tar xvfz pip-1.2.1.tar.gz
cd pip-1.2.1
zypper install python-setuptools
python setup.py install
ln -sfn /usr/local/bin/pip /usr/bin/pip
pip install --upgrade awscli
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment