Using Anaconda Distribution, how to use bokeh building?

I downloaded the Anaconda installer for Windows 32 bit from http://continuum.io/downloads . In my IPyNotebook in Google Chrome, I pasted the code here: https://github.com/ContinuumIO/bokeh/blob/demo/examples/plotting/server/remotedata.py

Running in the notebook draws this error:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-376-39dc49ee6c7a> in <module>()
      1 import numpy as np
----> 2 from bokeh.transforms.line_downsample import downsample
      3 
      4 from bokeh.sampledata.stocks import AAPL, FB, GOOG, IBM, MSFT
      5 from bokeh.plotting import *

ImportError: No module named transforms.line_downsample

Is everything delivered with my Anaconda installation? How to run it?

+4
source share
2 answers

, , , , , . ( -) , .

, bokeh, conda bokeh conda update bokeh. , git clone , Quickstart Bokeh, : http://bokeh.pydata.org/docs/quickstart.html#quickstart

+2

Bokeh? Anaconda,

conda update conda

conda update anaconda

+1

Source: https://habr.com/ru/post/1532846/


All Articles