Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| software:miniconda:caviness [2025-10-15 15:37] – created thuachen | software:miniconda:caviness [2025-10-16 09:41] (current) – [Installing Applications with Conda] thuachen | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Miniconda on Caviness ====== | ====== Miniconda on Caviness ====== | ||
| - | Miniconda is available through the VALET packages on Caviness | + | <note warning> This page is under construction. |
| + | </ | ||
| + | |||
| + | Miniconda is available through the VALET packages on the Caviness | ||
| < | < | ||
| $ vpkg_versions miniconda | $ vpkg_versions miniconda | ||
| Line 17: | Line 20: | ||
| ===== Installing Applications with Conda ===== | ===== Installing Applications with Conda ===== | ||
| - | You can create a new Conda environment either by name or by path. | + | <note tip> |
| + | 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 ''/ | ||
| < | < | ||
| - | conda create --name myenv python=3.13 | + | conda create -p / |
| </ | </ | ||
| - | By default, Conda environments are created in your home directory. However, the limited home directory quotas (20 GB) can be filled up quickly. | + | You can also create |
| < | < | ||
| - | conda create -p $WORKDIR/ | + | conda create --name myenv python=3.13 |
| </ | </ | ||
| + | <warning important> | ||
| + | By default, Conda environments created by ''' | ||
| + | </ | ||
| After creating the Conda environments, | After creating the Conda environments, | ||
| < | < | ||