How to Fix Entry Point Not Found while installing libraries in conda environment

后端 未结 7 1683
逝去的感伤
逝去的感伤 2020-12-13 02:10

I\'m working on anaconda by making multiple environments in it. I have made any environment camelot so now I want to install in different libraries in this envi

7条回答
  •  攒了一身酷
    2020-12-13 02:56

    For those still having similar issues with libssl11_-x64.dll or other .dll files:

    Use pip install instead if you can!


    I had the same issue today with libcrypto-1_1-x64.dll when trying to install plotly using

    conda install -c plotly plotly
    

    This prompts a downgrade for anaconda, and in turn raises the error:

    OPENSSL_sk_new_reserve [...] libcrypto-1_1-x64.dll

    Instead, using for example

    pip install plotly==4.1.0
    

    works like a charm!

提交回复
热议问题