CondaSSLError: OpenSSL appears to be unavailable on this machine.

Use the command in miniconda conda create --name gluonto create a new virtual environment and report an error:
insert image description here
The tried solutions are:
① (Unresolved) Go to https://slproweb.com/products/Win32OpenSSL.html to download OpenSSL and add the download path to the system environment variable:
insert image description here
② ( Unsolved) Uninstall and reinstall, select All Users instead of Just Me during installation:
insert image description here
the installation path is C:\ProgramData\Miniconda3, add the following system environment variables:

C:\ProgramData\Miniconda3
C:\ProgramData\Miniconda3\Scripts
C:\ProgramData\Miniconda3\Library\bin

③ (Solution) Copy the files libcrypto-1_1-x64.dll and libssl-1_1-x64.dll under the path C:\ProgramData\Miniconda3\Library\bin to the path C:\ProgramData\Miniconda3\DLLs, and execute the command again conda create --name gluon,success:

insert image description here

Guess you like

Origin blog.csdn.net/Elford/article/details/127940531