pyecharts出错TypeError: __init__() got an unexpected keyword argument 'width'

今天在使用pyecharts的map绘制地图时候
mac一直出错TypeError: init() got an unexpected keyword argument ‘width’
很郁闷,win的就不会出错

然后网上查了很久没有查到,最后发现可能是版本问题

pip install pyecharts==0.1.9.4

这个就很好用了

from pyecharts import Bar,Pie,Map,WordCloud
# 容器类
from collections import Counter
import jieba.analyse

# from pyecharts import Map

value =[155, 10, 66, 78, 33, 80, 190, 53, 49.6]
attr =["福建", "山东", "北京", "上海", "甘肃", "新疆", "河南", "广西", "西藏"]
map=Map("Map 结合 VisualMap 示例",width=1200, height=600)
map.add("", attr, value, maptype='china', is_visualmap=True, visual_text_color='#000')
map.show_config()
map.render()

完美解决

你可能感兴趣的:(pyecharts出错TypeError: __init__() got an unexpected keyword argument 'width')