1

I used

wget --no-check-certificate https://raw.github.com/pypa/pip/master/contrib/get-pip.py

and then

python get-pip.py

and get error:

File "get-pip.py", line 20281
"""
2rs2ts
  • 10,662
  • 10
  • 51
  • 95
Lawrence Chernin
  • 151
  • 2
  • 11

2 Answers2

1

You need to a version of Python installed that is at least 2.6. For more information see the following link: http://pip.readthedocs.org/en/latest/installing.html#id6

Adrienne
  • 163
  • 2
  • 9
1

I had a similar problem but then on i realized my Python version was 2.4. Install the 2.7 version and run the python2.7 get-pip.py It worked for me!

Community
  • 1
  • 1
jin
  • 59
  • 5