“pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用"

quot;pip is configured with locations that require TLS/SSL, however the ssl module in Python is not availablequot;(“pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用)
本文介绍了“pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有 anaconda 包并运行 Spyder.这是我的系统信息:

anaconda 2018.12 py37_0Python 3.7.1点 18.1戴尔灵越 13 7000 64 位

我无法在命令提示符下使用 pip 安装任何东西.例如,我在尝试安装 numpy 时得到以下信息(我已经通过 anaconda 获得了):

pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用.已满足要求:c:usersuday rallabhandianaconda3libsite-packages 中的 numpy (1.15.4)pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用.无法获取 URL https://pypi.org/simple/pip/:确认 ssl 证书时出现问题:HTTPSConnectionPool(host='pypi.org', port=443):最大重试次数超出 url:/simple/pip/(由 SSLError 引起(无法连接到 HTTPS URL,因为 SSL 模块不可用."))- 跳过

请帮助我理解为什么会这样.

解决方案

这是我在带有 Anaconda 的 Windows 10 上纠正错误的过程:

  1. 在我的环境变量中添加了以下路径:
    • /AppData/Local/Continuum/Anaconda3
    • /AppData/Local/Continuum/Anaconda3/Scripts
    • /AppData/Local/Continuum/Anaconda3/Library
    • /AppData/Local/Continuum/Anaconda3/Library/Bin

在这个阶段,错误信息仍然存在.

  1. 我从 Anaconda Prompt 安装了最新版本的 pip:<块引用>

    python -m pip install --upgrade pip

这似乎纠正了 DLL 冲突.

I have the anaconda package and run Spyder. Here is my system information:

anaconda                  2018.12                  py37_0

Python                    3.7.1

pip                       18.1

Dell Inspiron 13 7000 64-bit

I am unable to install anything with pip from the command prompt. I get the following when trying to install numpy for instance (which I already have through anaconda):

pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.

Requirement already satisfied: numpy in c:usersuday rallabhandianaconda3libsite-packages (1.15.4)

pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.

Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping

Please help me understand why this is happening.

解决方案

Here was my process to correct the error, on Windows 10 with Anaconda:

  1. Added the following paths to my environment variables:
    • /AppData/Local/Continuum/Anaconda3
    • /AppData/Local/Continuum/Anaconda3/Scripts
    • /AppData/Local/Continuum/Anaconda3/Library
    • /AppData/Local/Continuum/Anaconda3/Library/Bin

At this stage, the error message was still there.

  1. From Anaconda Prompt, I installed the latest version of pip:

    python -m pip install --upgrade pip

This appeared to correct the DLL conflict.

这篇关于“pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python arbitrarily incrementing an iterator inside a loop(python在循环内任意递增迭代器)
Joining a set of ordered-integer yielding Python iterators(加入一组产生 Python 迭代器的有序整数)
Iterating over dictionary items(), values(), keys() in Python 3(在 Python 3 中迭代字典 items()、values()、keys())
What is the Perl version of a Python iterator?(Python 迭代器的 Perl 版本是什么?)
How to create a generator/iterator with the Python C API?(如何使用 Python C API 创建生成器/迭代器?)
Python generator behaviour(Python 生成器行为)