From 8c549328ff4759f03dff0bb4aaba845ea87dd762 Mon Sep 17 00:00:00 2001 From: esoha-nvidia <69258779+esoha-nvidia@users.noreply.github.com> Date: Fri, 24 Dec 2021 11:12:02 -0700 Subject: [PATCH] Fix cudf compilation instructions. This change is needed since https://github.com/rapidsai/cudf/commit/967f3397fb486368d74916ae344c0e1d9eb0a1a8 by @bdice --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aae62fbd47c..6d1c0528832 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -86,7 +86,7 @@ git submodule update --init --remote --recursive ```bash # create the conda environment (assuming in base `cudf` directory) # note: RAPIDS currently doesn't support `channel_priority: strict`; use `channel_priority: flexible` instead -conda env create --name cudf_dev --file conda/environments/cudf_dev_cuda11.0.yml +conda env create --name cudf_dev --file conda/environments/cudf_dev_cuda11.5.yml # activate the environment conda activate cudf_dev ```