在python中导入Chainer引发错误

时间:2018-07-05 05:46:04

标签: python anaconda chainer

我得到了错误:

  

模块'matplotlib.colors'没有属性'to_rgba',

当我在ipynb中导入链接器时。
我正在使用python 2,anaconda 4.1.1,chainer 4和matplotlib 1.5.1。有人可以评估问题

3 个答案:

答案 0 :(得分:0)

尝试重新启动文本编辑器并进行尝试,有时需要重新启动文本编辑器才能使更改生效。

答案 1 :(得分:0)

matplotlib.colors.to_rgba在版本matplotlib == 1.5.1中不可用。  首先将matplotlib更新为最新版本。  升级matplotlib的命令

pip install --upgrade matplotlib

然后尝试一下。应该没问题。

import matplotlib
matplotlib.colors.to_rgba(c, alpha=None)

参考链接 https://matplotlib.org/api/_as_gen/matplotlib.colors.to_rgba.html https://matplotlib.org/users/colors.html

答案 2 :(得分:0)

您可以通过以下方式解决问题:

  • chainer更新到v4.2.0或更高版本,或者
  • matplotlib更新到v2.0或更高版本

另请参阅:https://github.com/chainer/chainer/issues/4670