在 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 得以解决。