我无法导入数据共享器:
在Jupyter笔记本中我得到:
ImportError:没有名为' datashader'
(linux ubuntu 17.04 32bit),运行python之后,我得到:
user1@user1-Satellite-A110:~$ python
Python 3.6.0 |Continuum Analytics, Inc.| (default, Dec 23 2016, 12:22:10)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import datashader
/home/user1/miniconda3/lib/python3.6/site-packages/odo/backends/pandas.py:94: FutureWarning: pandas.tslib is deprecated and will be removed in a future version.
You can access NaTType as type(pandas.NaT)
@convert.register((pd.Timestamp, pd.Timedelta), (pd.tslib.NaTType, type(None)))
>>>
我使用miniconda安装了数据分析器。 所以首先安装miniconda,然后使用
conda install -c bokeh datashader
知道为什么没有导入数据共享器吗?
答案 0 :(得分:1)
Jupyter笔记本可能只是使用与安装数据共享器的Python安装不同的Python安装。如果是这样,只需选择与安装数据共享器的位置相对应的内核,或者为Jupyter正在使用的内核安装数据共享器。
在终端中它看起来像数据共享器成功导入;这只是一个警告。