Aya Salem
Aya Salem

Reputation: 9

Error in jupyter notebook after importing visualisation libraries

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.

Upvotes: 0

Views: 132

Answers (1)

Aya Salem
Aya Salem

Reputation: 9

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.

Upvotes: 1

Related Questions