Windows环境下报错WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
时间: 2023-11-11 22:59:38 浏览: 276
解决安装python3.7.4报错Can''t connect to HTTPS URL because the SSL module is not available
这个报错是因为在 Windows 环境下,pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用。解决方法如下:
1. 确认 Python 是否正确安装,可以在命令行中输入 python --version 查看版本号。
2. 如果 Python 版本低于 2.7.9 或 3.4,则需要升级 Python 版本。
3. 如果 Python 版本已经是 2.7.9 或 3.4 及以上,则需要安装 OpenSSL。
4. 安装 OpenSSL 后,需要将 OpenSSL 的 bin 目录添加到系统环境变量中。
阅读全文