Describe the bug
When I am trying to import dask_cudf
I get the following ERROR:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-11-afb970ad91bb> in <module>()
8 from dask_cuda import LocalCUDACluster
9 import dask_xgboost
---> 10 import dask_cudf
11 import dask
12 from xgboost.dask import DaskDMatrix
ModuleNotFoundError: No module named 'dask_cudf'
---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
---------------------------------------------------------------------------
I have dask and RAPIDS installed with pip
- when I search for: pip install dask_cudf
- original site is not exists anymore: https://pypi.org/project/dask-cudf/
- google stored site history: https://webcache.googleusercontent.com/search?q=cache:8in7y2jQFQIJ:https://pypi.org/project/dask-cudf/+&cd=1&hl=en&ct=clnk&gl=uk
I am trying to install it with the following code in the Google Colab Window
%pip install dask-cudf
I get the following ERROR
ERROR: Could not find a version that satisfies the requirement dask-cudf (from versions: none)
ERROR: No matching distribution found for dask-cudf
On the github page of CUDF is archived. How can I install it to google colab now? https://github.com/rapidsai/dask-cudf
Solutions I have tried
- [ARCHIVED] Dask support for distributed GDF object --> Moved to cudf -> So I install it from https://pypi.org/project/cudf/
%pip install cudf
- On the new Github page from where the achieved point to I can only see conda installation that doesn't works with Google colab - https://github.com/rapidsai/cudf
- Rapids install:
pip install rapidsai
I thought this is an older version that may be not supported now