为python 3.5安装pip

2024-09-28 21:11:18 发布

您现在位置:Python中文网/ 问答频道 /正文

解决方案我的用户没有pip目录的权限,我使用sudo -H标志重新安装了Python 3.5

我尝试使用pip3安装python 3.5的Tensorflow——原因在thisgithub issue中描述——但是当我使用sudo pip3 install *.whl安装时,它会安装到python 3.4中。

如何重定向pip3以安装到python 3.5目录中?

我在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

看起来我甚至没有为python 3.5安装pip。我该怎么做?

我试过了

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

还有

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

我找不到任何升级到pip3.5的支持

更新

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

由@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

似乎我缺少了各种依赖项--我将尝试重新安装


Tags: installpiptogetbinlinuxusrlocal
1条回答
网友
1楼 · 发布于 2024-09-28 21:11:18

检查/usr/local/lib/python3.5/dist-packages

您可以在那里安装Pip,也可以使用easy_install(Pythons安装工具的一部分)安装Pip:

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

或者你可以尝试:

python3.5 -m ensurepip

另一个选项是尝试从存储库安装,包名称取决于您的分发:

sudo apt-get install python3-pip pip3

编辑:为便于安装,请尝试以下更正:

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

我想这就是它安装到的目录。

另外,您缺少python3.5 -m ensurepip命令的这个库:

sudo apt-get install libssl-dev

相关问题 更多 >