_I'm trying to make bar-charts with Bokeh to be outputted as .html-files. Everything works fine with simple plotting, but for some reason when i try to run the following code:
from bokeh.charts import Bar, output_file, show
from bokeh.sampledata.autompg import autompg as df
p = Bar(df, label='yr', values='mpg', agg='mean',
title="Average MPG by YR")
output_file("bar.html")_
I end up with an error saying:
ImportError: No module named 'bokeh.charts'
I have installed Pandas, Numpy through pip and they all can be found using the help('modules') command. I've understood that Pandas is required for high-level Bokeh charts and it's been installed through Pip
Pandas version: 0.20.3 Bokeh version: 0.12.9 Python is version 3.4.2
I've tried also different import commands, "from bokeh import *" etc. but nothing seems to work.