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
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!