web-dev-qa-db-ja.com

ImportError:PIPを使用して名前HTTPSHandlerをインポートできません

Pipを使用してpythonパッケージをインストール中にHTTPSHandlerエラーに直面すると、スタックトレースは次のようになります。

--------desktop:~$ pip install Django==1.3
Traceback (most recent call last):
  File "/home/env/.genv/bin/pip", line 9, in <module>
    load_entry_point('pip==1.4.1', 'console_scripts', 'pip')()
  File "/home/env/.genv/lib/python2.7/site-packages/pkg_resources.py", line 378, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/home/env/.genv/lib/python2.7/site-packages/pkg_resources.py", line 2566, in load_entry_point
    return ep.load()
  File "/home/env/.genv/lib/python2.7/site-packages/pkg_resources.py", line 2260, in load
    entry = __import__(self.module_name, globals(),globals(), ['__name__'])
  File "/home/env/.genv/lib/python2.7/site-packages/pip/__init__.py", line 10, in <module>
    from pip.util import get_installed_distributions, get_prog
  File "/home/env/.genv/lib/python2.7/site-packages/pip/util.py", line 17, in <module>
    from pip.vendor.distlib import version
  File "/home/env/.genv/lib/python2.7/site-packages/pip/vendor/distlib/version.py", line 13, in <module>
    from .compat import string_types
  File "/home/env/.genv/lib/python2.7/site-packages/pip/vendor/distlib/compat.py", line 31, in <module>
    from urllib2 import (Request, urlopen, URLError, HTTPError,
ImportError: cannot import name HTTPSHandler

Modules/setup.distファイルを編集し、SSLコード行のコメントを解除して、次のスレッドを参照して再構築していました。 http://forums.opensuse.org/english/get-technical-help-here/applications /488962-opensuse-python-openssl-2.html

61
user3016020

OSX + homebrewユーザー:

レシピの最新のアップデートを入手できます。

brew reinstall python

それでも問題が解決しない場合は、たとえばOSをアップグレードしている場合は、まず最新のopensslを入手する必要があるかもしれません。どのバージョンとそれがどこで使用されているかを以下から確認できます。

openssl version -a
which openssl

最新のopensslを入手するには:

brew update
brew install openssl
brew link --overwrite --dry-run openssl  # safety first.
brew link openssl --overwrite

これにより、警告が発行される場合があります。

bash-4.3$ brew link --overwrite --dry-run openssl
Warning: Refusing to link: openssl Linking keg-only openssl means you may end up linking against the insecure, deprecated system OpenSSL while using the headers from Homebrew's openssl. 
Instead, pass the full include/library paths to your compiler e.g.: 
-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib

サイドノート:この警告は、他のアプリでは、使用したい場合があることを意味します

export LDFLAGS=-L/usr/local/opt/openssl/lib
export CPPFLAGS=-I/usr/local/opt/openssl/include

次に、Pythonを再コンパイルします。

brew uninstall python
brew install python --with-brewed-openssl

またはpython 3の場合

brew uninstall python3
brew install python3 --with-brewed-openssl
47
dnozay

SSLサポートが必要な場合は、Pythonをビルドする前にOpenSSLヘッダーファイルをインストールする必要があります。 DebianおよびUbuntuでは、これらはlibssl-devというパッケージに含まれています。さらにいくつかの依存関係が必要になる場合があります ここに記載されているように

22
sk1p

自作

これは、おそらくMavericksへのアップグレードが原因でした。修正方法は次のとおりです。

OpenSSLを更新する

#make a copy of the existing library, just in case
Sudo cp /usr/bin/openssl /usr/bin/openssl.Apple

# update openssl 
brew update
brew install openssl
brew link --force openssl

# reload terminal paths
hash -r

Pythonを再インストールします

Python 3

brew uninstall python3

brew install python3 --with-brewed-openssl

Python 2

brew uninstall python

brew install python --with-brewed-openssl

この回答は、私が見つけたすべてのStack Exchangeの回答とコメントを統合し、主にこれに基づいています Apple Stack Exchange answer

20
Waylon Flinn

PATHなどを確認した後でも、Mac OSXでこの問題が発生していました。

しました; pip uninstall virtualenvを実行してからvirtualenvをインストールすると、動作するようになりました。

当時、私はbrewにopensslをリンクさせ、リンクを解除しましたが、virtualenvはまだ機能しているように見えますが、おそらくそれは再インストール時に元々リンクされていたためでしょう。

9
jay

問題を解決するには、Pythonを作成してインストールする前にOpenSSlをインストールする必要があります。

Centosの場合:

yum install openssl openssl-devel -y

ソース

9
leon

私にとってこの問題の別の症状は、virtualenvのpythonコンソールに移動してimport sslを実行するとエラーになることでした。私のvirtualenvはbrewバージョンのPythonを使用しておらず、私のマシンにデフォルトでインストールされているだけでした。デフォルトのインストールが突然機能しなくなった理由はわかりませんが、ここで問題を修正しました:

  • rmvirtualenv myvirtualenv
  • brew update
  • brew reinstall python
  • mkvirtualenv -p /usr/local/Cellar/python/whatever_version_number/bin/python myvirtualenv
6
David Wright

pipにはHTTPSHandlerライブラリの一部であるSSLが必要と思われます。

OSX

OS Xでは、Pythonインストール中にOpenSSLをリンクする必要があります(参照: #14497 )。

Python 2の場合:

brew reinstall python --with-brewed-openssl
pip install --upgrade pip

Python 3の場合:

brew reinstall python3 --with-brewed-openssl
pip3 install --upgrade pip

複数のPythonインスタンスを一緒に使用して、それらのリストを実行できます。

brew list | grep ^python

または、ls -al /usr/local/lib/python*でバージョンをリストします。

4
kenorb

私はRedhatを使用していますが、同じ問題に直面しています。

私の解決策は次のとおりです。

  1. opensslとopenssl-develをインストール---- yum install openssl openssl-devel -y
  2. krb5-develをインストール---- yum install krb5-devel
  3. pythonのディレクトリに変更して再コンパイルします---- make

2番目のステップを実行しなかった場合、python2.7を再コンパイルすると、ログに「モジュールの_sslのビルドに失敗しました」と表示されます。

3
April

OSXでは、brewはこのエラーでopensslに対してリンクすることを拒否し続けました:

15:27 $ brew link --force openssl
Warning: Refusing to link: openssl
Linking keg-only openssl means you may end up linking against the insecure,
deprecated system OpenSSL while using the headers from Homebrew's openssl.
Instead, pass the full include/library paths to your compiler e.g.:
  -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib

私はついにそれを動作させることができました:

  brew remove openssl
  brew uninstall --force openssl
  brew install openssl
  export LDFLAGS=-L/usr/local/opt/openssl/lib
  export CPPFLAGS=-I/usr/local/opt/openssl/include
  brew remove python
  brew update
  brew install python
0
Brandon

多くの場合、これは古くなったvirtualenvが原因です。virtualenvを再生成するスクリプトは次のとおりです。 https://Gist.github.com/WoLpH/fb98f7dc6ba6f05da2b8

ファイルにコピーして(上記のダウンロード可能なリンク)、次のように実行します:zsh -e recreate_virtualenvs.sh <project_name>

#!/bin/zsh -e

if [ ! -d "$PROJECT_HOME" ]; then
    echo 'Your $PROJECT_HOME needs to be defined'
    echo 'http://virtualenvwrapper.readthedocs.org/en/latest/install.html#location-of-project-directories'
    exit 1
fi

if [ "" = "$1" ]; then
    echo "Usage: $0 <project_name>"
    exit 1
fi

env="$1"
project_dir="$PROJECT_HOME/$1"
env_dir="$HOME/envs/$1"

function command_exists(){
    type $1 2>/dev/null | grep -vq ' not found'
}

if command_exists workon; then
    echo 'Getting virtualenvwrapper from environment'
    # Workon exists, nothing to do :)

Elif [ -x ~/bin/mount_workon ]; then
    echo 'Using mount workon'
    # Optional support for packaged project directories and virtualenvs using
    # https://github.com/WoLpH/dotfiles/blob/master/bin/mount_workon
    . ~/bin/mount_workon
    mount_file "$project_dir"
    mount_file "$env_dir"

Elif command_exists virtualenvwrapper.sh; then
    echo 'Using virtualenvwrapper'
    . $(which virtualenvwrapper.sh)
fi

if ! command_exists workon; then
    echo 'Virtualenvwrapper not found, please install it'
    exit 1
fi

rmvirtualenv $env || true

echo "Recreating $env"
mkvirtualenv $env || true
workon "$env" || true
pip install virtualenv{,wrapper}

cd $project_dir
setvirtualenvproject 

if [ -f setup.py ]; then
    echo "Installing local package"
    pip install -e .
fi

function install_requirements(){
    # Installing requirements from given file, if it exists
    if [ -f "$1" ]; then
        echo "Installing requirements from $1"
        pip install -r "$1"
    fi
}

install_requirements requirements_test.txt
install_requirements requirements-test.txt
install_requirements requirements.txt
install_requirements test_requirements.txt
install_requirements test-requirements.txt

if [ -d docs ]; then
    echo "Found docs, installing sphinx"
    pip install sphinx{,-pypi-upload} py
fi

echo "Installing ipython"
pip install ipython

if [ -f tox.ini ]; then
    deps=$(python -c "
parser=__import__('ConfigParser').ConfigParser();
parser.read('tox.ini');
print parser.get('testenv', 'deps').strip().replace('{toxinidir}/', '')")
    echo "Found deps from tox.ini: $deps"
    echo $deps | parallel -v --no-notice pip install {}
fi

if [ -f .travis.yml ]; then
    echo "Found deps from travis:"
    installs=$(grep 'pip install' .travis.yml | grep -v '\$' | sed -e 's/.*pip install/pip install/' | grep -v 'pip install . --use-mirrors' | sed -e 's/$/;/')
    echo $installs
    eval $installs
fi

deactivate
0
Wolph

Ubuntuの場合

最初にopenssl-developのインストールを確認してください

Sudo apt-get install libssl-dev

別の方法で再インストールしてくださいpip

Sudo apt-get install python-setuptools
Sudo easy_install pip

ソースコードでインストールするのではなく、setuptoolsを使用してpipをインストールすると、依存関係の問題を解決できる場合があります。

0
mymusise