快速安装:(推荐学习:Python视频教程)
有很多种不同的安装方式安装Bokeh
如果你用的是Anaconda (推荐),用以下的命令通过bash或者windows的命令行就可直接安装了。
conda install bokeh
这种安装方式,Anaconda已经准备了运行Bokeh之前所有需要的所有依赖,这也是Bokeh强烈推荐的安装方式,无论任何平台,包括windows,它都可以将安装成本趋近于零。它也会安装一些例子在examples/目录,即Anaconda安装目录的子目录。
当然,如果你有绝对的自信解决这些依赖,依赖包括Numpy,pandas及redis等,你也可以用pip安装
pip install bokeh
注:通过pip方式安装,不会安装这些例子,不过可以通过git clone 下载这些例子(examples/)。
用python基本数据类型pst的一些数据画一个线状图,并包括缩放(zoom),区域选择(pan),调整尺寸(resize),保存(save)等工具,是一个简答又直接的方式。
注:建议使用ipython notebook,如果不了解,去了解一下吧
from bokeh.plotting import figure, output_file, show
# prepare some data
x = [1, 2, 3, 4, 5]y = [6, 7, 2, 4, 5]
# output to static HTML file
output_file("pnes.html", title="pne plot example")
# create a new plot with a title and axis labels
p = figure(title="simple pne example", x_axis_label='x', y_axis_label='y')
# add a pne renderer with legend and pne thickness
p.pne(x, y, legend="Temp.", pne_width=2)
# show the results
show(p)
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是小编分享的关于python怎么安装bokeh的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!