我不确定为什么,但是我很难在Jupyter笔记本上运行bokeh。我尝试了pip instal散景,conda更新了bokeh,但是这些都不适合我。
这些是我需要的库:
import bokeh
import bokeh.io
bokeh.io.output_notebook()
from bokeh.plotting import figure, show
from bokeh.models import HoverTool
The error states: ModuleNotFoundError
<ipython-input-35-0f0c4b610685> in <module>
----> 1 import bokeh
2 import bokeh.io
3 bokeh.io.output_notebook()
4 from bokeh.plotting import figure, show
5 from bokeh.models import HoverTool
ModuleNotFoundError: No module named 'bokeh'
我还有其他选择吗?