美文网首页
python使用pyecharts

python使用pyecharts

作者: 木火应 | 来源:发表于2022-07-14 09:27 被阅读0次
  • 安装pyecharts==0.5.11echarts-themes-pypkg==0.0.3主题插件
pip install pyecharts==0.5.11
  • 安装支持html转图片的pyecharts-snapshot
pip install pyecharts-snapshot==0.1.10
  • 转图片是通过调用phantomjs命令来执行的,所以需要先安装(以下为centos7的linux版本),并建立软连接
wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2
tar xvf phantomjs-2.1.1-linux-x86_64.tar.bz2
cd phantomjs-2.1.1-linux-x86_64/bin
chmod a+x phantomjs
sudo ln -s xxx/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/bin/phantomjs
  • 验证:
# python
>>>from pyecharts import Bar, Line, Pie, Grid,configure
>>>from pyecharts_snapshot.main import make_a_snapshot
>>>make_a_snapshot("file.html","file.png",pixel_ratio=1)

相关文章

网友评论

      本文标题:python使用pyecharts

      本文链接:https://www.haomeiwen.com/subject/jmyxirtx.html