0

我得到错误:

模块“matplotlib.colors”没有属性“to_rgba”,

当我在 ipynb 中导入 chainer 时。
我正在使用 python 2、anaconda 4.1.1、chainer 4 和 matplotlib 1.5.1。任何人都可以评估这个问题

4

3 回答 3

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

于 2018-07-05T06:09:15.410 回答
0

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

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

另见:https ://github.com/chainer/chainer/issues/4670

于 2018-07-05T06:12:00.623 回答
0

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

于 2018-07-05T05:57:20.373 回答