I have a conda environment with Python 3.7 on Windows 10. Conda is version 4.5.11. It has pip version 20.0.2. I want to run seaborn and scipy libraries in Python. Following advice here, I downloaded .whl files from here matching my Python version and 64-bit architecture. pip install
on these libraries succeeded, and the libraries are listed in my environment. But when I try importing them:
import seaborn
import scipy
import pylab
I get a DLL load failure.
It's a mess getting some basic Python packages to work on Windows 10.