web-dev-qa-db-fra.com

Installez pip pour python 3.5

[~ # ~] solution [~ # ~] Mon utilisateur ne possédait pas d'autorisations sur le répertoire pip, j'ai réinstallé Python 3.5 en utilisant le drapeau Sudo -H

J'essaie d'installer Tensorflow pour python 3.5 en utilisant pip3 - pour les raisons décrites dans this problème github - mais lorsque j'installe en utilisant Sudo pip3 install *.whl Il s'installe sur python 3.4.

Comment puis-je rediriger pip3 Pour l'installer dans mon répertoire python 3.5?

Je cours sur 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

Il semble que je n'ai même pas installé pip pour python 3.5. Comment puis-je faire ceci?

J'ai essayé

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

Également,

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

Je ne trouve aucun support pour la mise à niveau vers pip3.5

[~ # ~] mise à jour [~ # ~]

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

Tel que recommandé par @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

Il semble que je manque toutes sortes de dépendances - je vais essayer de réinstaller

10
Kendall Weihe

Vérifiez: /usr/local/lib/python3.5/dist-packages

Vous y trouverez soit Pip, soit easy_install (qui fait partie des outils de configuration de Pythons), qui peut être utilisé pour installer Pip:

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

Ou vous pouvez essayer:

python3.5 -m ensurepip

Une autre option tente d'installer à partir d'un référentiel, le nom du package dépend de votre distribution:

Sudo apt-get install python3-pip pip3

Edit: Essayez cette correction pour une installation facile:

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

Je suppose que c'est le répertoire dans lequel il est installé.

De plus, cette bibliothèque vous manque pour le python3.5 -m ensurepip commande:

Sudo apt-get install libssl-dev
14
L Martin