Q:
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 environment. So for example I install pandas in this environment(camelot), I'm writing:
conda install pandas
or
conda install -c conda-forge camelot-py
Then it gives me error:
python.exe-Entry Point Not Found
The procedure entry point OPENSSL_sk_new_reserve could not be
located in the dynamic link library.
C:\Users\abc\Anaconda3\Library\bin\libssl11_-x64.dll
First I thought it may be error because of environment-variable, I Set environment-variable for pyhton but it could not resolve
A:
I had the same issue.
I found out libssl-1_1-x64 dlls in Anaconda/DLLS and Anaconda/Library/bin being installed at different dates, so, as an experiment, I copied the one in Anaconda/DLLS and replaced that in Anaconda/Library/bin and conda started working again, at least for now - I could install new packages again.
Hope it helps.