- 安装
pyecharts==0.5.11
、echarts-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)
网友评论