From 8317a228c2802a9c3426ee75fec6cc41c63040c0 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Thu, 21 Mar 2024 12:04:13 -0400 Subject: [PATCH 1/2] note on conda configuration --- install/install.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install/install.md b/install/install.md index 9a80a305079..6fb21a6a15b 100644 --- a/install/install.md +++ b/install/install.md @@ -203,6 +203,11 @@ bash Miniconda3-latest-Linux-x86_64.sh **3. Start Conda.** Open a new terminal window, which should now show Conda initialized. +**4. Check Conda Configuration.** Installing RAPIDS requires you to use `channel_priority: flexible`. You check this and change it, if required, by doing: +```sh +conda config --show channel_priority +conda config --set channel_priority flexible +```
From 3c6b3287fb3186699fec51a4e4c3f315a9162b94 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Fri, 22 Mar 2024 08:49:25 -0500 Subject: [PATCH 2/2] Update install/install.md --- install/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.md b/install/install.md index 6fb21a6a15b..bd33ae4b4dc 100644 --- a/install/install.md +++ b/install/install.md @@ -203,7 +203,7 @@ bash Miniconda3-latest-Linux-x86_64.sh **3. Start Conda.** Open a new terminal window, which should now show Conda initialized. -**4. Check Conda Configuration.** Installing RAPIDS requires you to use `channel_priority: flexible`. You check this and change it, if required, by doing: +**4. Check Conda Configuration.** Installing RAPIDS requires you to use `channel_priority: flexible`. You can check this and change it, if required, by doing: ```sh conda config --show channel_priority conda config --set channel_priority flexible