From ba89cba0fb8aaf7db2fccd999d81dff6d3f47297 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Tue, 28 Jan 2025 12:39:23 -0500 Subject: [PATCH] Use correct label command --- _notices/rsn0042.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/_notices/rsn0042.md b/_notices/rsn0042.md index 073171deedd..4fa1b309201 100644 --- a/_notices/rsn0042.md +++ b/_notices/rsn0042.md @@ -28,8 +28,8 @@ notice_updated: 2025-01-27 ## Overview RAPIDS will move certain older conda packages in the `rapidsai` conda channel -under a new label: `legacy`. These packages will still be available by appending -`--label legacy` to installation and search commands. +under a new label: `legacy`. These packages will still be available by adding +`-c rapidsai/label/legacy` to installation and search commands. By moving these packages out of the main portion of the channel, newer RAPIDS conda environments will be solvable with `strict_channel_priority`, speeding up @@ -44,8 +44,8 @@ This change will occur concurrently with the release of RAPIDS `v25.04`. ## Impact RAPIDS environments installed using `conda` or `mamba`, for environments older -than RAPIDS `v23.04` will fail to install unless `--label legacy` is appended to -the installation command. +than RAPIDS `v23.04` will fail to install unless `-c rapidsai/label/legacy` is +added to the installation command. e.g. if you are creating an environment like: @@ -57,5 +57,4 @@ you will need to instead run ```python mamba create -n rapids-23.02 rapids=23.02 python=3.10 'cuda-version>=11.4,<=11.8' -c rapidsai -c rapidsai/label/legacy -c conda-forge -c nvidia - ```