Reputation: 3448
I am trying to run some bokeh examples, and when I import bokeh.layouts (either from the ipython interpreter, or in a jupyter notebook) I get the following error: ImportError: No module named 'bokeh.layouts'
.
I am using python 3.5 and bokeh 0.12.4 installed via conda install bokeh. What's wrong with this?
Upvotes: 2
Views: 6953
Reputation: 34568
You have more than one python or python environment installed on your system, and the python that you are actually running is different from the one that your have installed bokeh into.
As a concrete example, here is one possible scenario, similar to ones I have seen on occasion:
Upvotes: 2