gpt4 book ai didi

jupyter-notebook - jupyter notebook 中没有显示 Bokeh

转载 作者:行者123 更新时间:2023-12-04 08:32:23 25 4
gpt4 key购买 nike

我什至无法在 Jupyter Notebook 中绘制最基本的 Bokeh 图。我进行了搜索,可以看到这是一年多前报告的问题,但此后就没有了 - 它仍然是其他人的问题吗?

from bokeh.io import output_notebook, show
from bokeh.plotting import figure

output_notebook()

p = figure(plot_width=400, plot_height=400)

p.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], size=15, line_color="navy",
fill_color="orange", fill_alpha=0.5)

show(p)

我得到“BokehJS 0.12.10 成功加载”。消息,但不是情节。请注意,它可以输出 html 文件。

我尝试使用以下方法更改环境变量:
import os
os.environ['BOKEH_RESOURCES'] = 'inline'

但这也没有效果。这是一个令人沮丧的下午,所以任何帮助将不胜感激!

最佳答案

运行下面的行对我有用

from bokeh.resources import INLINE
import bokeh.io
from bokeh import *
bokeh.io.output_notebook(INLINE)

关于jupyter-notebook - jupyter notebook 中没有显示 Bokeh ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46893131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com