conda报错 pip is configured with locations that require TLS/SSL, however the ssl module in Python not

Problem Description

After installing conda on windows, when entering the environment installation package, there is: WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.

insert image description here
Looking for a solution online, most of them said that the environment variable was not added, but I added this environment variable when I installed it, so naturally there is no such problem. The environment variable is shown in the following figure:
insert image description here

Solution

The reason is that the system is missing the SSL module

Go to the following address to download: https://slproweb.com/products/Win32OpenSSL.html

Select the MSI of Win64 OpenSSL v1.1.1q Light to download and click to install.
insert image description here
After installation, execute again. You can find that there is no such annoying warning
insert image description here

Guess you like

Origin blog.csdn.net/MacWx/article/details/130365202