在浏览器的 jupyter 里使用 pyechart 正常显示图片, 在 vscode 的 jupyter 里,看不见 参考了 https://zhuanlan.zhihu.com/p/85753997?from_voters_page=true
from pyecharts.globals import CurrentConfig, NotebookType
CurrentConfig.NOTEBOOK_TYPE = NotebookType.JUPYTER_LAB
from pyecharts.charts import Bar
bar = Bar()
bar.add_xaxis(["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"])
bar.add_yaxis("商家 A", [5, 20, 36, 10, 75, 90])
bar.load_javascript()
bar.render_notebook()
最后两行各自一个 cell 也试了。