我正在尝试HoloViews
在 python 控制台中使用它,而不是在 jupyter/Ipython 笔记本中使用它。
为此,我尝试按照常见问题解答中的示例进行操作:
from holoviews import Store
renderer = Store.renderers['matplotlib'].instance(fig='svg', holomap='gif')
renderer.save(my_object, 'example_I', style=dict(Image={'cmap':'jet'}))
但显然我没有任何可用的后端!:
$ python
Python 2.7.6 (default, Oct 26 2016, 20:22:54)
[GCC 4.8.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from holoviews import Store
>>> Store.renderers
OrderedDict()
有谁知道这是预期的行为还是我的安装损坏了?
我有 HoloViews 1.6.2(带 pip)和 Matplotlib 1.3.1(来自 ubuntu)