pyecharts在jupyter notebook中使用报错
生活随笔
收集整理的這篇文章主要介紹了
pyecharts在jupyter notebook中使用报错
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
建議下載pyecharts(0.5.xx)版本,如果使用 pip install pyecharts 默認安裝V1版本(如1.7.1)會出現如下報錯:
1、Bar模塊導入問題
from pyecharts import Bar報錯:cannot import name ‘Bar’
解決辦法:
2、Bar 使用報錯
from pyecharts import Bar bar =Bar("我的第一個圖表", "這里是副標題") #標題 bar.add("服裝", #標簽["襯衫", "羊毛衫", "雪紡衫", "褲子", "高跟鞋", "襪子"],#x坐標[5, 20, 36, 10, 75, 90]) #y坐標 # is_more_utils = True #顯示右側的工具欄 # bar.show_config() # 打印所有參數 bar.render('my_first_chart.html')#保存圖列 bar報錯:TypeError: init() takes from 1 to 2 positional arguments but 3 were given
嘗試注釋掉報錯行:
還會有新的報錯:‘Bar’ object has no attribute ‘add’
解決辦法:卸載、安裝舊版本
如果安裝時報錯(mac系統):
Failed building wheel for dukpy xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrunerror: command 'gcc' failed with exit status 1解決辦法:
1、安裝xcode
2、然后再安裝pyecharts-0.5.10
3、安裝成果后重啟jupyter notebook即可
另附幾個pyecharts教程,舊版pyecharts一樣強大:
Python可視化-Echarts
報表統計圖
金融數據可視化
總結
以上是生活随笔為你收集整理的pyecharts在jupyter notebook中使用报错的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlab语句运算相关论文,毕业论文M
- 下一篇: jsr-303 参数校验—自定义校验注解