Importerror : matplotlib is required for plotting when the default backend “matplotlib“ is backward

Edword_adra發表於2020-10-03

k a g g l e kaggle kaggle 上面對前人的例子進行復現其中發現,在採用 m a t p l o t l i b matplotlib matplotlib 畫圖時候出現報錯,經過查詢原因,處理方法如下:
主要原因: p a n d a s pandas pandas m a t p l o t l i b matplotlib matplotlib 庫出現了衝突,也可能是由於 p a n d a s pandas pandas m a t p l o t l i b matplotlib matplotlib 的版本過低,因此對兩個 p y t h o n python python 庫進行了更新,並重啟 j u p t e r jupter jupter n o t e b o o k notebook notebook,

pip install --upgrade pandas==1.0.5

但是出現了報錯,具體如下:

ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 拒絕訪問。: 'c:\\users\\wenjia\\anaconda3\\lib\\site-packages\\~-ndas\\_libs\\algos.cp37-win_amd64.pyd'
Consider using the `--user` option or check the permissions.

因此,考慮採用 − − u s e r --user user o p t i o n option option

pip install --user --upgrade pandas==1.0.5
 pip install --user --upgrade matplotlib

最終,錯誤 b u g bug bug 得以解決。

相關文章