pyecharts study notes 2

Quick Start

pyecharts.org do version management, you can see the current document is the latest version of the document, if you are using a version of the document with inconsistencies, please update pyecharts.

How to view pyecharts version used?

import pyecharts

print(pyecharts.__version__)

how to install

pip install

$ pip(3) install pyecharts

Source Installation

$ git clone https://github.com/pyecharts/pyecharts.git
$ cd pyecharts
$ pip install -r requirements.txt
$ python setup.py install
# 或者执行 python install.py

Guess you like

Origin www.cnblogs.com/vincent-sh/p/12636715.html