I am using the follow lines in terminal to install rapids and then dask cudf:
conda create -n rapids-core-0.14 -c rapidsai -c nvidia -c conda-forge \
-c defaults rapids=0.14 python=3.7 cudatoolkit=10.1
conda activate rapids-core-0.14
conda install -c rapidsai dask-cudf
but when I go to import dask_cudf into the python notebook:
import dask_cudf
I get the following error:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-827f6c5d8016> in <module>
9 from dask.distributed import Client
10 from dask.utils import parse_bytes
---> 11 import dask_cudf
12 np.set_printoptions(formatter={'float': lambda x: "{0:0.4f}".format(x)})
13 pd.set_option('display.float_format', lambda x: '%.5f' % x)
ModuleNotFoundError: No module named 'dask_cudf'
Why is it unable to find the module?