Raspberry Pi Python Install Pip
How to install pip on raspberry pi
One way to install pip
on your raspberry pi:
$ sudo apt-get install python-setuptools
Setup tools include easy_install
, which you can use to install pip
:
$ sudo easy_install pip
If you have multiple versions of Python- or are running Python 3- then use the specific easy_install
version: easy_install3.2
or easy_install2.7
You can also use the get-pip.py
script using wget
and python:
wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
sudo python get-pip.py