维护者注意:这个问题涉及过时的第一代 Bokeh 服务器。有关现代 Bokeh 服务器应用程序的详细信息,请参阅:
https://docs.bokeh.org/en/latest/docs/user_guide/server.html
过时:
我从 https://www.anaconda.com/distribution/ 下载了适用于 Windows 32 位的 Anaconda 安装程序
在我的 Jupyter Notebook 中,我从这里插入了代码:
https://github.com/bokeh/bokeh/blob/demo/examples/plotting/server/remotedata.py
在笔记本中执行会出现该错误:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-376-39dc49ee6c7a> in <module>()
1 import numpy as np
----> 2 from bokeh.transforms.line_downsample import downsample
3
4 from bokeh.sampledata.stocks import AAPL, FB, GOOG, IBM, MSFT
5 from bokeh.plotting import *
ImportError: No module named transforms.line_downsample
我的 Anaconda 安装不应该提供所有内容吗?我如何让它运行?
最佳答案
另外,请注意,您正在查看的示例实际上位于正在开发下采样工作的分支上。这项工作目前(本周末)正在合并到 master 中,然后将以更清晰的形式从 master 中可用。
因此,如果您只想使用其他散景示例,可以使用 conda
通过 conda update bokeh
安装最新的散景。但是如果你想运行上面的远程数据示例,你应该做那个分支的git clone
,然后按照Bokeh Quickstart中的说明安装它:http://docs.bokeh.org/docs/quickstart.html#quickstart
关于jupyter-notebook - 使用 Anaconda Distribution,如何使用散景绘图?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22561551/