Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install pip for python 3.5

SOLUTION My user did not own permissions to the pip directory, I reinstalled Python 3.5 using the sudo -H flag

I'm trying to install Tensorflow for python 3.5 using pip3 -- for reasons described in this github issue -- but when I install using sudo pip3 install *.whl it installs to python 3.4.

How can I redirect pip3 to install into my python 3.5 directory?

I'm running on Ubuntu 14.04

kendall@kendall-Macmini:~/Downloads$ python3.4 -m pip --version
pip 8.1.2 from /usr/local/lib/python3.4/dist-packages/pip-8.1.2-py3.4.egg (python 3.4)
kendall@kendall-Macmini:~/Downloads$ python3.5 -m pip --version
/usr/local/bin/python3.5: No module named pip

It looks like I don't even have pip installed for python 3.5. How can I do this?

I've tried

kendall@kendall-Macmini:~/Downloads$ pip install -U pip
Requirement already up-to-date: pip in /usr/local/lib/python3.4/dist-packages/pip-8.1.2-py3.4.egg

Also,

kendall@kendall-Macmini:~/Downloads$ whereis pip
pip: /usr/bin/pip /usr/bin/X11/pip /usr/local/bin/pip3.4 /usr/local/bin/pip /usr/local/bin/pip2.7 /usr/share/man/man1/pip.1.gz

I can't find any support for upgrading to pip3.5

UPDATE

kendall@kendall-Macmini:~/Downloads$ sudo apt-get install python3-setuptools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-setuptools is already the newest version.
The following packages were automatically installed and are no longer required:
  libntdb1 linux-headers-4.2.0-27 linux-headers-4.2.0-27-generic
  linux-image-4.2.0-27-generic linux-image-extra-4.2.0-27-generic
  linux-signed-image-4.2.0-27-generic python-ntdb
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
kendall@kendall-Macmini:~/Downloads$ sudo python3.5 easy_install.py pip
python3.5: can't open file 'easy_install.py': [Errno 2] No such file or directory
kendall@kendall-Macmini:~/Downloads$ python3.5 -m ensurepip
Ignoring ensurepip failure: pip 8.1.1 requires SSL/TLS
kendall@kendall-Macmini:~/Downloads$ sudo apt-get install pip3
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package pip3


kendall@kendall-Macmini:~/Downloads$ sudo apt-get install libssl-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libssl-dev is already the newest version.
The following packages were automatically installed and are no longer required:
  libntdb1 linux-headers-4.2.0-27 linux-headers-4.2.0-27-generic
  linux-image-4.2.0-27-generic linux-image-extra-4.2.0-27-generic
  linux-signed-image-4.2.0-27-generic python-ntdb
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
kendall@kendall-Macmini:~/Downloads$ python3.5 -m ensurepip
Ignoring ensurepip failure: pip 8.1.1 requires SSL/TLS

As recommended by @fwalsh

kendall@kendall-Macmini:~/Downloads$ python3.5 get-pip.py 
Traceback (most recent call last):
  File "get-pip.py", line 19177, in <module>
    main()
  File "get-pip.py", line 194, in main
    bootstrap(tmpdir=tmpdir)
  File "get-pip.py", line 82, in bootstrap
    import pip
zipimport.ZipImportError: can't decompress data; zlib not available

It seems like I'm missing all sorts of dependencies -- I'm going to try reinstalling

like image 460
Kendall Weihe Avatar asked Jul 07 '16 15:07

Kendall Weihe


People also ask

How do I install pip in Python?

Ensure you can run pip from the command lineRun python get-pip.py . 2 This will install or upgrade pip. Additionally, it will install setuptools and wheel if they're not installed already. Be cautious if you're using a Python install that's managed by your operating system or another package manager.

Does Python 3.6 have pip?

And now you can install packages for Python 3.6 with pip-3.6 !

Does Python 3 include pip?

Getting Started With pip. Package management is so important that Python's installers have included pip since versions 3.4 and 2.7. 9, for Python 3 and Python 2, respectively. Many Python projects use pip , which makes it an essential tool for every Pythonista.


1 Answers

Check: /usr/local/lib/python3.5/dist-packages

You'll either have Pip there or easy_install(part of Pythons setup tools), which can be used to install Pip:

sudo apt-get install python3-setuptools
sudo python3.5 easy_install.py pip

Or you can try:

python3.5 -m ensurepip

Another option is attempting to install from a repository, the package name depends on your distribution:

sudo apt-get install python3-pip pip3

Edit: Try this correction for easy install:

sudo apt-get install python3-setuptools
sudo python3.5 /usr/local/lib/python3.5/dist-packages/easy_install.py pip

I'm assuming that's the directory it's installed to.

Also, you're missing this library for the python3.5 -m ensurepip command:

sudo apt-get install libssl-dev
like image 89
L Martin Avatar answered Sep 18 '22 18:09

L Martin