ERROR: Could not find a version that satisfies the requirement dask-cudf (from versions: none)

ERROR: Could not find a version that satisfies the requirement dask-cudf (from versions: none)

描述错误

当我尝试 import dask_cudf 时,出现以下错误:


---------------------------------------------------------------------------
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.
---------------------------------------------------------------------------

我用 pip 安装了 dask 和 RAPIDS

我正在尝试在 Google Colab Window 中使用以下代码安装它 %pip install dask-cudf

我得到以下错误

ERROR: Could not find a version that satisfies the requirement dask-cudf (from versions: none)
ERROR: No matching distribution found for dask-cudf

CUDF 的 github 页面已存档。现在如何将它安装到 google colab? https://github.com/rapidsai/dask-cudf

我试过的解决方法

RAPIDS 不支持 pip 安装 (https://medium.com/rapids-ai/rapids-0-7-release-drops-pip-packages-47fc966e9472)。不清楚您是如何使用 pip 安装 RAPIDS 的。 RAPIDS 的 pip 安装页面 (https://pypi.org/project/rapidsai/) 声明应该使用 conda 代替 pip 来安装 RAPIDS。

请使用 RAPIDS 入门页面 (https://rapids.ai/start.html) 上提供的选项之一来安装 RAPIDS。

另外,您使用的是哪个版本的 RAPIDS?

由于Googlecolab不支持python3.7及以上版本,因此无法在Googlecolab上安装最新版本的RAPIDS。