From 0ac8a7ab2da753516b497149cba822d40692a6dc Mon Sep 17 00:00:00 2001 From: Omen Wild Date: Mon, 6 Jul 2026 15:03:48 -0700 Subject: [PATCH] Update docs to indicate this example is bash specific. --- docs/software/conda.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/software/conda.md b/docs/software/conda.md index 7e951881..e9f9dbda 100644 --- a/docs/software/conda.md +++ b/docs/software/conda.md @@ -195,10 +195,9 @@ Unloading the `conda` module also deactivates all conda environments. ## Migrating from User-installed Conda -If you have installed conda in your home directory already, you will get an error when you try to load the conda module. -This is necessary because user-installed condas set environment variables that clash with the central install. In order -to migrate, you will need to remove the initialization code that the conda installer adds to your shell configuration. -This code will most likely be in either `~/.bashrc` or `~/.bash_profile`, and will look something like: +If you have installed conda in your home directory already, you will get an error when you try to load the conda module. User-installed conda sets environment variables that clash with the central install. To migrate, you will need to remove the initialization code that the conda installer, or `conda init`, adds to your shell configuration. If you use [bash](https://www.gnu.org/software/bash/) this code will most likely be in either `~/.bashrc` or `~/.bash_profile`. If you use a different shell, then please consult the documentation for that shell. + +In `bash` or a `bash`-like shell, it will look something like: ```bash # >>> conda initialize >>>