Unable to use Conda with Anaconda 2018.2 on Windows

前端 未结 4 2013
梦如初夏
梦如初夏 2020-12-18 12:59

I just did a fresh installation of Anaconda 2018.2 on Windows 10. This anaconda version uses python v3.7. While running conda for updating conda update conda, I

相关标签:
4条回答
  • 2020-12-18 13:00

    What worked for me was to copy these files from Anaconda3/Library/bin to Anaconda3/DLLs :

    libcrypto-1_1-x64.dll

    libssl-1_1-x64.dll

    0 讨论(0)
  • 2020-12-18 13:02

    I had a similar problem running conda on my work laptop behind a firewall. Create a .condarc config file in your home directory, typically 'c:\users\[your user id]', if one doesn't already exist. Add an entry to turn off SSL verification. Looks like this:

    ssl_verify:  false
    

    Save the file and retry the conda command.

    If this doesn't work and your computer is behind a firewall. Make sure the proxy server entries are also defined in the .condarc config file. Example:

    proxy_servers:
       http: http://www.proxy.com:8080
       https: https://www.proxy.com:8080
    
    0 讨论(0)
  • 2020-12-18 13:03

    I will answer my own question. I discovered 2 solutions.

    First solution is to use Anaconda Prompt

    Second solution is to install OpenSSL for Windows. The binaries can be downloaded here;

    https://slproweb.com/products/Win32OpenSSL.html

    This binary worked for me. https://slproweb.com/download/Win64OpenSSL-1_1_1a.exe I am running 64-bit Windows 10.

    Above solutions have been tested to work on my PC.

    0 讨论(0)
  • 2020-12-18 13:09

    Using Anaconda Prompt as Administrator worked for me. I have not tried the second solution (OpenSSL)

    0 讨论(0)
提交回复
热议问题