Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have both python2.7 and python3.2 installed in Ubuntu 12.04.
The symbolic link python links to python2.7.

When I type:

sudo pip install package-name

It will default install python2 version of package-name.

Some package supports both python2 and python3.
How to install python3 version of package-name via pip?

share|improve this question
Are there separated pip-2.7 and pip-3.2 commands in your system? – Felix Yan May 26 '12 at 3:54
There are only one pip. – kev May 26 '12 at 3:55
Can I change the first line of /usr/bin/pip from #!/usr/bin/python to #!/usr/bin/python3 ? – kev May 26 '12 at 3:57
1  
Yes, but I would recommend you to cp the pip to pip-3.2 then change it, so you would get a better choice next time :) – Felix Yan May 26 '12 at 4:01

7 Answers

up vote 7 down vote accepted

You may want to build a virtualenv of python3, then install packages of python3 after activating the virtualenv. So your system won't be messed up :)

This could be something like:

virtualenv -p /usr/bin/python3 py3env
source py3env/bin/activate
pip install package-name
share|improve this answer
Does virtualenv install pip even if you don't have it installed in the main Python 3? If so, then this does solve his problem. Otherwise not. – Lennart Regebro May 26 '12 at 8:07
Yes, virtualenv installs pip. – Felix Yan May 26 '12 at 8:08
1  
OK. I still think the answer doesn't really answer his question in a generic way, though. – Lennart Regebro May 26 '12 at 8:11
virtualenv itself can be installed via pip to get the latest in older versions of Ubuntu: sudo pip install virtualenv – Jacob Wan Apr 20 at 21:04
This has the advantage of providing the latest version of both virtualenv and the pip that it provides to virtual environments. – Jacob Wan Apr 20 at 21:10

I came across this and fixed this without needing the likes of wget or virtualenvs (assuming Ubuntu 12.04; 12.10 has a package python3-pip):

  1. Install package python3-setuptools: run sudo aptitude install python3-setuptools, this will give you the command easy_install3.
  2. Install pip using Python 3's setuptools: run sudo easy_install3 pip, this will give you the command pip-3.2 like kev's solution.
  3. Install your PyPI packages: run sudo pip-3.2 install <package> (installing python packages into your base system requires root, of course).
  4. Profit!
share|improve this answer
3  
Perfect and proper, this should be the accepted answer. However you should specify sudo pip-3.2 install <package>, superuser permissions are required. – KomodoDave Sep 20 '12 at 14:56
Well spotted, changed point 3 to reflect this. – akaIDIOT Sep 21 '12 at 10:51
I find it better to use --user to install in ~.local/, than to use sudo. see pep 370 – jarondl Sep 26 '12 at 17:17
7  
You can combine steps 1 and 2 and just do: sudo apt-get install python3-pip – Shashank Bharadwaj Oct 23 '12 at 23:37
2  
packages.ubuntu.com shows this super handy package for Ubuntu 12.10, but not for 12.04: packages.ubuntu.com/… (great find though ;)) – akaIDIOT Oct 24 '12 at 9:08
show 1 more comment
sudo apt-get install curl
curl http://python-distribute.org/distribute_setup.py | sudo python3
curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python3
sudo pip-3.2 MODULE_NAME

Probably you must also install dev package:

sudo apt-get install python3-dev

Sources:
http://askubuntu.com/questions/104514/python-installing-packages-with-pip
http://www.pip-installer.org/en/latest/installing.html

share|improve this answer

If you have pip installed in both pythons, and both are in your path, just use:

$ pip-2.7 install PACKAGENAME
$ pip-3.2 install PACKAGENAME

References:

This is a duplicate of question #2812520

share|improve this answer

In Ubuntu 12.04:

wget http://pypi.python.org/packages/source/p/pip/pip-1.1.tar.gz    
tar xzf pip-1.1.tar.gz    
cd pip-1.1    
sudo python3 setup.py install

In the last command: use python3 instead of python(Which links to python2.7).
It'll create a /usr/local/bin/pip-3.2 executable file.


sudo pip-3.2 install package-name

It will install python3 version of package-name.

share|improve this answer

Firstly, you need to install pip for the Python 3 installation that you want. Then you run that pip to install packages for that Python version.

Since you have both pip and python 3 in /usr/bin, I assume they are both installed with a package manager of some sort. That package manager should also have a Python 3 pip. That's the one you should install.

Felix' recommendation of virtualenv is a good one. If you are only testing, or you are doing development, then you shouldn't install the package in the system python. Using virtualenv, or even building your own Pythons for development, is better in those cases.

But if you actually do want to install this package in the system python, installing pip for Python 3 is the way to go.

share|improve this answer

Easy enough:

sudo aptitude install python3-pip
pip-3.2 install --user pkg

If you want Python 3.3, which isn't the default as of Ubuntu 12.10:

sudo aptitude install python3-pip python3.3
python3.3 -m pip.runner install --user pkg
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.