当前位置:   article > 正文

解决pyecharts运行后产生的html文件用浏览器打开空白或者jupyter无法显示_pyecharts词云图html打不开

pyecharts词云图html打不开

方法一 

1)Kernel -> Restart & Clear Output 重启并清除输出

2)按F12 勾选Disable cache禁用缓存

 

3)按F5刷新浏览器,重新运行代码即可

方法二

根据网站资源引用说明:pyecharts 使用的所有静态资源文件存放于 pyecharts-assets 项目中,默认挂载在 https://assets.pyecharts.org/assets/

因为默认优先从远程引用资源,这就导致有的时候无法加载js文件,图表显示不出来

解决办法:

下载所需js文件到本地,修改资源引用地址

看网站的介绍,pyecharts 提供了更改全局 HOST 的快捷方式

官方下载

备用下载

pyecharts-assets 提供了 pyecharts 的静态资源文件。

可通过 localhost-server 或者 notebook-server 启动本地服务。首先将项目下载到本地

  1. # 通过 git clone
  2. $ git clone https://github.com/pyecharts/pyecharts-assets.git
  3. # 或者直接下载压缩包
  4. $ wget https://github.com/pyecharts/pyecharts-assets/archive/master.zip

Localhost-Server

启动服务器

  1. $ cd pyecharts-assets
  2. $ python -m http.server

设置 host

  1. # 只需要在顶部声明 CurrentConfig.ONLINE_HOST 即可
  2. from pyecharts.globals import CurrentConfig
  3. CurrentConfig.ONLINE_HOST = "http://127.0.0.1:8000/assets/"
  4. # 接下来所有图形的静态资源文件都会来自刚启动的服务器
  5. from pyecharts.charts import Bar
  6. bar = Bar()

Notebook-Server

安装扩展插件

  1. $ cd pyecharts-assets
  2. # 安装并激活插件
  3. $ jupyter nbextension install assets
  4. $ jupyter nbextension enable assets/main

设置 host

  1. # 只需要在顶部声明 CurrentConfig.ONLINE_HOST 即可
  2. from pyecharts.globals import CurrentConfig, OnlineHostType
  3. # OnlineHostType.NOTEBOOK_HOST 默认值为 http://localhost:8888/nbextensions/assets/
  4. CurrentConfig.ONLINE_HOST = OnlineHostType.NOTEBOOK_HOST
  5. # 接下来所有图形的静态资源文件都会来自刚启动的服务器
  6. from pyecharts.charts import Bar
  7. bar = Bar()

tips:

CurrentConfig.ONLINE_HOST = "http://127.0.0.1:8000/assets/"

可以直接修改为本机目录:

CurrentConfig.ONLINE_HOST = "E:/Software/pyecharts-assets-master/assets/"

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/165107
推荐阅读
相关标签
  

闽ICP备14008679号