Error in jupyter notebook after importing visualisation libraries

Viewed 30
import numpy as np  
import pandas as pd  

import matplotlib.pyplot as plt  
%matplotlib inline  
import seaborn as sns

I keep recieving:

ImportError: DLL load failed while importing _arpack: The specified procedure could not be found.
1 Answers

Update:

I fixed the problem by forcing the removing of Numpy,seaborn and scipy then used to install :

pip install seaborn numpy scipy

I rechecked jupyter notebook and it works just fine.

Related