AttributeError: module 'pandas' has no attribute 'tslib'解决办法

pandas的tslib被弃用,ggplot太久没人维护,源码中没有做出相应的跟进,需要自己去文件中修改

报错   AttributeError: module 'pandas' has no attribute 'tslib'

解决方案
在安装ggplot的文件中进行文件修改,我的路径是
AttributeError: module 'pandas' has no attribute 'tslib'解决办法_第1张图片
用记事本打开 utils.py,找到 pd.tslib.Timestamp 改为 pd.Timestamp ,保存退出
AttributeError: module 'pandas' has no attribute 'tslib'解决办法_第2张图片

报错   No module named 'pandas.lib'

解决方案
在stats目录下找到smoothers.py文件,用记事本打开
找到 from pandas.lib import Timestamp 改为 from pandas import Timestamp ,保存退出。
找到 pd.tslib.Timestamp 改为 pd.Timestamp ,保存退出。
AttributeError: module 'pandas' has no attribute 'tslib'解决办法_第3张图片
大功告成!

方法转载自这位大神
传送门https://blog.csdn.net/qq_38889342/article/details/89355727

你可能感兴趣的:(报错方案)