Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| software:miniconda:caviness [2025-10-15 16:28] – [Installing Applications with Conda] thuachen | software:miniconda:caviness [2025-10-16 09:41] (current) – [Installing Applications with Conda] thuachen | ||
|---|---|---|---|
| Line 21: | Line 21: | ||
| ===== Installing Applications with Conda ===== | ===== Installing Applications with Conda ===== | ||
| <note tip> | <note tip> | ||
| - | Note: In the examples below, please modify paths, usernames, and environment names (e.g., ''/ | + | Note: In the examples below, please modify paths, usernames, and environment names (e.g., ''/ |
| </ | </ | ||
| You can create a new Conda environment either by name or by path. For example, to create an environment in a specific path, such as your ''/ | You can create a new Conda environment either by name or by path. For example, to create an environment in a specific path, such as your ''/ | ||
| < | < | ||
| - | conda create -p $WORKDIR/$USER/myenv python=3.13 | + | conda create -p /work/ |
| </ | </ | ||
| + | You can also create a new environment by name, | ||
| < | < | ||
| conda create --name myenv python=3.13 | conda create --name myenv python=3.13 | ||
| </ | </ | ||
| <warning important> | <warning important> | ||
| - | By default, Conda environments | + | By default, Conda environments created |
| </ | </ | ||
| After creating the Conda environments, | After creating the Conda environments, | ||