问题描述:在jupyter notebook 中安装Pyecharts最新版1.9.1之后,发现使用render_notebook()方法,图形无法正常显示。
解决方案:
1,安装pyecharts-assets
通过Gitcode安装pyecharts-assets
按照说明,启动cmd命令行,依次输入下列指令,将库克隆到本地。
# 通过 git clone
git clone https://github.com/pyecharts/pyecharts-assets.git
# 进入克隆文件夹
cd pyecharts-assets
# 安装插件
jupyter nbextension install assets
# 激活插件
jupyter nbextension enable assets/main
2,安装jupyter-echarts-pypkg
在Gitcode上安装jupyter-echarts-pypkg
按照说明,启动cmd命令行,依次输入下列指令,将库克隆到本地。
# 通过 git clone
git clone https://github.com/pyecharts/jupyter-echarts-pypkg.git
# 进入克隆文件夹
cd jupyter-echarts-pypkg
# 安装插件
python setup.py install
3,安装jupyter-echarts
在Gitcode上安装jupyter-echarts
按照说明,启动cmd命令行,依次输入下列指令,将库克隆到本地。
# 通过 git clone
git clone https://gitcode.com/pyecharts/jupyter-echarts.git
# 进入克隆文件夹
cd jupyter-echarts
# 安装插件
jupyter nbextension install echarts
# 激活插件
jupyter nbextension enable echarts/main
完成后重启Jupyter notebook,图形可以正常显示