ImportError: 通过Brew无法导入HTTPSHandler

4 投票
1 回答
9105 浏览
提问于 2025-04-18 14:25

我在设置我的Python环境时遇到了一些麻烦... 我是通过brew安装的Python,但当我尝试用easy_install或pip安装东西时,出现了错误。在这个例子中,我尝试用pip安装一个包...

我使用的是一台运行Mavericks系统的Macbook,Python版本是2.7.8...

谢谢! :)

$ sudo pip install test
ERROR:root:code for hash md5 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type md5
ERROR:root:code for hash sha1 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha1
ERROR:root:code for hash sha224 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha224
ERROR:root:code for hash sha256 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha256
ERROR:root:code for hash sha384 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha384
ERROR:root:code for hash sha512 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 139, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 91, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha512
Traceback (most recent call last):
  File "/usr/local/bin/pip", line 9, in <module>
    load_entry_point('pip==1.5.6', 'console_scripts', 'pip')()
  File "build/bdist.macosx-10.9-x86_64/egg/pkg_resources.py", line 356, in load_entry_point
  File "build/bdist.macosx-10.9-x86_64/egg/pkg_resources.py", line 2439, in load_entry_point
  File "build/bdist.macosx-10.9-x86_64/egg/pkg_resources.py", line 2155, in load
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg/pip/__init__.py", line 10, in <module>
    from pip.util import get_installed_distributions, get_prog
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg/pip/util.py", line 18, in <module>
    from pip._vendor.distlib import version
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg/pip/_vendor/distlib/version.py", line 14, in <module>
    from .compat import string_types
  File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pip-1.5.6-py2.7.egg/pip/_vendor/distlib/compat.py", line 31, in <module>
    from urllib2 import (Request, urlopen, URLError, HTTPError,
ImportError: cannot import name HTTPSHandler

brew list python

Joao-Carreira-Macbook-Pro:Desktop joaocarreira$ brew list python
/usr/local/Cellar/python/2.7.8/bin/2to3
/usr/local/Cellar/python/2.7.8/bin/2to3-2
/usr/local/Cellar/python/2.7.8/bin/2to3-2.7
/usr/local/Cellar/python/2.7.8/bin/easy_install
/usr/local/Cellar/python/2.7.8/bin/easy_install-2.7
/usr/local/Cellar/python/2.7.8/bin/idle
/usr/local/Cellar/python/2.7.8/bin/idle2
/usr/local/Cellar/python/2.7.8/bin/idle2.7
/usr/local/Cellar/python/2.7.8/bin/pip
/usr/local/Cellar/python/2.7.8/bin/pip2
/usr/local/Cellar/python/2.7.8/bin/pip2.7
/usr/local/Cellar/python/2.7.8/bin/pydoc
/usr/local/Cellar/python/2.7.8/bin/pydoc2
/usr/local/Cellar/python/2.7.8/bin/pydoc2.7
/usr/local/Cellar/python/2.7.8/bin/python
/usr/local/Cellar/python/2.7.8/bin/python-config
/usr/local/Cellar/python/2.7.8/bin/python2
/usr/local/Cellar/python/2.7.8/bin/python2-config
/usr/local/Cellar/python/2.7.8/bin/python2.7
/usr/local/Cellar/python/2.7.8/bin/python2.7-config
/usr/local/Cellar/python/2.7.8/bin/pythonw
/usr/local/Cellar/python/2.7.8/bin/pythonw2
/usr/local/Cellar/python/2.7.8/bin/pythonw2.7
/usr/local/Cellar/python/2.7.8/bin/smtpd.py
/usr/local/Cellar/python/2.7.8/bin/smtpd2.7.py
/usr/local/Cellar/python/2.7.8/bin/smtpd2.py
/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/ (3666 files)
/usr/local/Cellar/python/2.7.8/IDLE.app/Contents/ (8 files)
/usr/local/Cellar/python/2.7.8/libexec/pip/ (407 files)
/usr/local/Cellar/python/2.7.8/libexec/setuptools/ (252 files)
/usr/local/Cellar/python/2.7.8/Python Launcher.app/Contents/ (17 files)
/usr/local/Cellar/python/2.7.8/share/man/ (3 files)
/usr/local/Cellar/python/2.7.8/share/python/ (317 files)

brew install -vd python

Joao-Carreira-Macbook-Pro:Desktop joaocarreira$ brew install -vd python 
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/python.rb
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/pkg-config.rb
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/readline.rb
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/sqlite.rb
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/gdbm.rb
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/openssl.rb
/usr/local/Library/brew.rb (Formulary::StandardLoader): loading /usr/local/Library/Formula/makedepend.rb
Warning: python-2.7.8 already installed, it's just not linked

1 个回答

0

你应该先通过brew安装openssl(可以用命令brew install openssl),然后正确链接它(用命令brew link openssl)。接着,再通过brew重新安装python,并加上参数--with-brewed-openssl。

撰写回答