I am getting the \"ImportError: DLL load failed: The specified module could not be found.\" when importing the module seaborn.
I tried uninstalling
The problem is because you are using windows. Scipy
has problems with windows, if you check the sklearn
site they say if you were unsuccessful for installing their packages by pip
or conda
you can install them with unofficial windows binary packages
so what you need to do is this, find your required package in This Link and download
it
uninstall your previous installed packages :
pip uninstall seaborn
install all you need from this link, i suggest you to install numpy , pandas, matplotlib, seaborn , ...
from this link
after you downloaded the required package, open your cmd, go to the folder that contains the .whl
file
you can install them by the following command :
pip install "seaborn‑0.8.1‑py2.py3‑none‑any.whl"