当我运行以下代码(我的pyechars==0.1.9.6)时,要绘制的是杭州的地图:
import numpy as np
from pyecharts import Map
print(pyecharts.__version__)
areas = ['上城区', '西湖区', '临安区']
values = np.random.randint(1, 100, size=3)
test_map = pyecharts.Map("test", width=1200, height=600)
test_map.add("", areas, values, maptype='杭州', is_visualmap=True,
visual_text_color='#000', is_label_show=True)
test_map.render('b.html') # note
出现了以下的问题:
Traceback (most recent call last): File
“G:/面试资料及简历/项目/杭州房价分析——爬虫、MySql、数据分析/数据分析/data_analysis.py”, line 166,
in
test_map.render(‘b.html’) # note File “D:\Python\Anaconda3\envs\ANACONDA01\lib\site-packages\pyecharts\base.py”,
line 347, in render
html = template.freeze_js(html) File “D:\Python\Anaconda3\envs\ANACONDA01\lib\site-packages\pyecharts\template.py”,
line 39, in freeze_js
with codecs.open(file_path, “r”, “utf-8”) as f: File “D:\Python\Anaconda3\envs\ANACONDA01\lib\codecs.py”, line 897, in open
file = builtins.open(filename, mode, buffering) FileNotFoundError: [Errno 2] No such file or directory:
‘D:\Python\Anaconda3\envs\ANACONDA01\lib\site-packages\pyecharts\templates\js/echarts/黄山.js’
0.1.9.6
注意:当我采用0.1.9.4的时候,代码运行通过,但是html文件如下:
对,就是这样的空白,但是升级到0.1.9.6的时候就出现了bug,这就是为什么绘制不回来图的原因。
我解决的方案是将pyechars的版本降到0.5.X,后来通过命令:
pip install pyecharts==0.5.9
这样子之后,我的问题解决了,反之就是很奇怪,高版本的为什么找不到对应城市的js文件,而低版本的却行。
希望我的这个方法对你有用。