我在使用我的系统上的Bokeh(Fedora)时遇到了一些麻烦。我已使用pip install bokeh
成功安装了它。我能够使用bokeh serve --show example.py
提供一些示例,但我无法在python中import bokeh
。我收到错误:
Python 2.7.11 (default, Jun 20 2016, 14:45:23)
[GCC 5.3.1 20160406 (Red Hat 5.3.1-6)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import bokeh
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "bokeh.py", line 12, in <module>
from bokeh.io import curdoc
ImportError: No module named io
我尝试升级散景,但这没有帮助。任何想法有什么不对?