python - brew 安装 python3 后出现 SSL 错误

标签 python ssl homebrew

<分区>

我刚刚使用以下命令安装了 python: brew 安装 python3

然后我跑了 pip3 安装虚拟环境

我遇到了这个错误: pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用。 收集虚拟环境 无法获取网址 https://pypi.python.org/simple/virtualenv/ : 确认 ssl 证书时出现问题:无法连接到 HTTPS URL,因为 SSL 模块不可用。 - 跳过 找不到满足 virtualenv 要求的版本(来自版本:) 没有找到 virtualenv 的匹配分布

如何修复 SSL 错误?

最佳答案

似乎 brew 跳过了 certifi 步骤。

从我的本地安装复制,这将运行 certifi ssl 安装步骤。

brew install openssl
ln -s /usr/local/Cellar/openssl/{version}/include/openssl /usr/bin/openssl
pip install certifi

然后运行:

# install_certifi.py
#
# sample script to install or update a set of default Root Certificates
# for the ssl module.  Uses the certificates provided by the certifi package:
#       https://pypi.python.org/pypi/certifi

import os
import os.path
import ssl
import stat
import subprocess
import sys

STAT_0o775 = ( stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
             | stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP
             | stat.S_IROTH |                stat.S_IXOTH )


def main():
    openssl_dir, openssl_cafile = os.path.split(
        ssl.get_default_verify_paths().openssl_cafile)

    print(" -- pip install --upgrade certifi")
    subprocess.check_call([sys.executable,
        "-E", "-s", "-m", "pip", "install", "--upgrade", "certifi"])

    import certifi

    # change working directory to the default SSL directory
    os.chdir(openssl_dir)
    relpath_to_certifi_cafile = os.path.relpath(certifi.where())
    print(" -- removing any existing file or link")
    try:
        os.remove(openssl_cafile)
    except FileNotFoundError:
        pass
    print(" -- creating symlink to certifi certificate bundle")
    os.symlink(relpath_to_certifi_cafile, openssl_cafile)
    print(" -- setting permissions")
    os.chmod(openssl_cafile, STAT_0o775)
    print(" -- update complete")

if __name__ == '__main__':
    main()

关于python - brew 安装 python3 后出现 SSL 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46626103/

相关文章:

python - 如何将登录(经过身份验证)的用户分配给他们提交的表单数据?

python - 用于表大小或元组大小(物理内存)的 django 命令?

c# - 在生产环境中通过 TLS/SSL 连接时的服务器证书/域自定义验证

android - Okhttp 3 (安卓) : connecting to ip address with self signed ssl

c++ - 使用 Ceres 求解器进行 CMake-ing 项目时冲突的 Eigen 依赖项

python - 为什么网络服务器提示西里尔字母,而命令行则不然?

python - plt.hist 显示 preprocessing.normalize 后奇怪的图

java - phpCAS - 调用 HTTP ://and not HTTPS://

mysql --version 在brew install mysql之后仍然显示/usr/local/mysql/bin/mysql

node.js - 安装带有 Homebrew 软件问题的 Node.js