最近在用pycharm绘图运行时会时不时出现如下错误:
该错误并不是必现的,网上主要有以下两种答案:
1.chrome版本和chrome驱动chromedriver版本不对应
2.卸载并重装selenium
但并未解决问题。
直到逛到github上发现有人遇到https://assets.pyecharts.org/assets/echarts.min.js 不能访问,导致调用pyecharts 建立的网站图表不能渲染的问题。因为自己的程序在运行时也偶发性的会出现这种问题,因此怀疑可能是官方网站不稳定导致的。
于是按照github上的建议,在python脚本开头加了如下两行代码,问题得到解决:
from pyecharts.globals import CurrentConfig
CurrentConfig.ONLINE_HOST = "https://cdnjs.cloudflare.com/ajax/libs/echarts/4.8.0/"
其中cdnjs.cloudflare.com为其他大佬搭建的服务器,稳定性也不太能得到保障。因此也可以通过命令python -m http.server在本地启动python自带的服务器,然后将上面的命令改为如下所示:
from pyecharts.globals import CurrentConfig
CurrentConfig.ONLINE_HOST = "https://127.0.0.0/ajax/libs/echarts/4.8.0/"
稳定性问题从根本上解决
参考资料:
https://github.com/pyecharts/pyecharts/issues/1683
https://blog.csdn.net/weixin_38723657/article/details/106502995