I have the anaconda package and run Spyder. Here is my system information:
anaconda 2018.12 py37_0
Python
I had the same issue when I created a new environment in anaconda, activated it and tried to install a library with pip. What was missing was:
conda install pip
then everything worked for me.
Activate your base conda environment:
conda activate base
Try your install/update with pip3 instead of pip.
Here was my process to correct the error, on Windows 10 with Anaconda:
At this stage, the error message was still there.
python -m pip install --upgrade pip
This appeared to correct the DLL conflict.
Activating the base and then activated my Django environment.
(Django_env) (base) C:\virtual_environment\Django_env> , which actually worked for me.
I do not have libeay32.dll in bin folder either, but after adding C:\Users\<user name>\Anaconda3\pkgs\openssl-1.1.1a-he774522_0\Library\bin
to the top of path, it is working. This is on Windows 10 64-bit.