1、下载 pyecharts-assets-master.zip 包
本地有github用户端 可用该命令: git clone https://github.com/pyecharts/pyecharts-assets.git
若无:直接登录github,下载
然后解压 pyecharts-assets-master.zip 到指定路径 如 e:\work\ 下
然后打开anaconda prompt 把路径切换到 cd e:\work\pyecharts-assets-master
如cd 切换不过去 用此命令 cd /d e:\work\pyecharts-assets-master切换,切换好路径
执行以下命令:
2、# 安装并激活插件
jupyter nbextension install assets
jupyter nbextension enable assets/main
# 3、配置 pyecharts 全局 HOST
在 jupyter 中运行一下代码
from pyecharts.globals import CurrentConfig, OnlineHostType# OnlineHostType.NOTEBOOK_HOST 默认值为 http://localhost:8888/nbextensions/assets/
CurrentConfig.ONLINE_HOST = OnlineHostType.NOTEBOOK_HOST
4、接下来就可以运作你的代码了
参考:
连接:Jupyter notebook无法显示pyecharts 图形界面 ----解决方法_一城山水的博客-CSDN博客_jupyter notebook pyecharts