运行backtrader回测程序,调用cerebro.plot()命令时,会出如下错误
cannot import name 'warnings' from 'matplotlib.dates'
原因可能很简单,就是matplotlib版本不兼容。backtrader与matplot 3.3不兼容,要降级到3.2,运行如下命令可降级:
pip uninstall matplotlib
pip install matplotlib==3.2.2
运行backtrader回测程序,调用cerebro.plot()命令时,会出如下错误
cannot import name 'warnings' from 'matplotlib.dates'
原因可能很简单,就是matplotlib版本不兼容。backtrader与matplot 3.3不兼容,要降级到3.2,运行如下命令可降级:
pip uninstall matplotlib
pip install matplotlib==3.2.2
本文标题:backtrader绘图运行出matplotlib错的原因
本文链接:https://www.haomeiwen.com/subject/qsfpgltx.html
网友评论