我无法导入数据着色器:
在 Jupyter Notebook 我简单地得到:
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
知道为什么不导入数据着色器吗?