Install pip for python 3.5

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

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

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

I work 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 for python 3.5. How can i do this?

I 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 

Besides,

 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 not find 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 kinds of dependencies - I'm going to try reinstalling

+6
source share
1 answer

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

You will have either Pip or easy_install (part of the Pythons configuration tools) that 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 to try installing from the repository:

 sudo apt-get install pip3 

Edit: Try this correction for easy installation:

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

I assume the directory on which it was installed.

Also, you are missing this library for the python3.5 -m ensurepip :

 sudo apt-get install libssl-dev 
+8
source

All Articles