Python 中缺少 ssl 模块的 pip TLS/SSL 问题
在 Python 3.6 中尝试使用 pip 安装模块时,您可能会遇到出现以下错误:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available
Windows 解决方案10
要在 Windows 10 上解决此问题并在标准命令提示符中启用 pip 使用,需要更新三个环境路径。通常,仅添加 D:Anaconda3Scripts 路径,但应包含以下三个路径:
通过添加这些路径,pip将拥有查找和使用安装所需模块所需的权限。
以上是为什么 pip 失败并出现'缺少 ssl 模块”错误以及如何在 Windows 10 上修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!