web-dev-qa-db-ja.com

python 3.5のpipをインストール

[〜#〜] solution [〜#〜]ユーザーがpipディレクトリへのアクセス権を持っていなかったため、Python 3.5を再インストールしましたSudo -Hフラグを使用する

Pip3を使用してpython 3.5にTensorflowをインストールしようとしています- this github issueで説明されている理由によりますが、Sudo pip3 install *.whlを使用してインストールすると_にインストールされますpython 3.4。

python 3.5ディレクトリにインストールするためにpip3をリダイレクトするにはどうすればよいですか?

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へのアップグレードのサポートが見つかりません

[〜#〜] 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

@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

あらゆる種類の依存関係が欠落しているようです-再インストールしてみます

10
Kendall Weihe

チェック:/usr/local/lib/python3.5/dist-packages

Pipがあるか、easy_install(Pythonセットアップツールの一部)があり、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
14
L Martin