How to get Bokeh working in Anaconda

Hello all,

I am new to Bokeh so please be gentle if i ask a stupid question.

I want to get Bokeh working in Anaconda and not thrue the commandline.

How do i get Bokeh working in Anaconda? I can’t make any sense of the
Github Bokeh guide.

Must i first install a package or something?

Your help is very much appreciated.

Regards.

Hi, just do from the command line

$ conda install bokeh

and then get a bokeh document from the user's guide and examples, and do

$ python main.py

where main.py is something like (from the docs):

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("lines.html")

# create a new plot with a title and axis labels
p = figure(title="simple line example", x_axis_label='x', y_axis_label='y')

# add a line renderer with legend and line thickness
p.line(x, y, legend="Temp.", line_width=2)

# show the results
show(p)

···

On Tue, Dec 13, 2016 at 2:47 PM, EKXO iMarketing and Naming <[email protected]> wrote:

Hello all,

I am new to Bokeh so please be gentle if i ask a stupid question.

I want to get Bokeh working in Anaconda and not thrue the commandline.

How do i get Bokeh working in Anaconda? I can't make any sense of the
Github Bokeh guide.

Must i first install a package or something?

Your help is very much appreciated.

Regards.

--
You received this message because you are subscribed to the Google Groups
"Bokeh Discussion - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/a/continuum.io/d/msgid/bokeh/0d77b67a-7ccc-4133-9b4b-5648fd0e8de5%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.

I want to get Bokeh working in Anaconda and not thrue the commandline.

Sorry I if I have misunderstood your question. Do you mean
iPython/Jupyter notebook? not sure what you mean 'working in
anaconda'.

···

On Tue, Dec 13, 2016 at 2:47 PM, EKXO iMarketing and Naming <[email protected]> wrote:

Hello all,

I am new to Bokeh so please be gentle if i ask a stupid question.

I want to get Bokeh working in Anaconda and not thrue the commandline.

How do i get Bokeh working in Anaconda? I can't make any sense of the
Github Bokeh guide.

Must i first install a package or something?

Your help is very much appreciated.

Regards.

--
You received this message because you are subscribed to the Google Groups
"Bokeh Discussion - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/a/continuum.io/d/msgid/bokeh/0d77b67a-7ccc-4133-9b4b-5648fd0e8de5%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.