I am getting the ImportError: DLL load failed: The specified procedure could not be found
. when importing the module seaborn.
My code is:
import seaborn as sns
sns.set()
Output:
ImportError Traceback (most recent call last)
<ipython-input-16-6f477838ac7f> in <module>
----> 1 import seaborn
D:\anaconda3\lib\site-packages\seaborn\__init__.py in <module>
1 # Capture the original matplotlib rcParams
----> 2 import matplotlib as mpl
3 _orig_rc_params = mpl.rcParams.copy()
4
5 # Import seaborn objects
D:\anaconda3\lib\site-packages\matplotlib\__init__.py in <module>
205
206
--> 207 _check_versions()
208
209
D:\anaconda3\lib\site-packages\matplotlib\__init__.py in _check_versions()
190 # Quickfix to ensure Microsoft Visual C++ redistributable
191 # DLLs are loaded before importing kiwisolver
--> 192 from . import ft2font
193
194 for modname, minver in [
ImportError: DLL load failed: The specified procedure could not be found.
I have uninstalled and reinstalled seaborn. still problem is not solved. What should I do?