Skip to content

Commit

Permalink
add a ferret environment
Browse files Browse the repository at this point in the history
  • Loading branch information
chekki2mo authored Jan 20, 2025
1 parent b55c486 commit 74430ea
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/clusters/Tools/micromamba.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ micromamba activate myenv
On some clusters (for example Dahu), your micromamba process will likely be killed by the system when you try to install environments or packages, because it uses too much memory. In this case, log in to a computation node to perform such tasks.
```

**Example:** Create R environment and install R packages
**Example 1:** Create R environment and install R packages

```bash
# Create an environment with python=3.10
Expand All @@ -53,3 +53,14 @@ micromamba activate Renv
micromamba install r r-base r-essentials -c conda-forge
micromamba install r-ncdf4 -c conda-forge
```

**Example 2:** Create a ferret environment

```bash
# Create an environment with python=3.8 (needed for Gricad clusters to get the display)
micromamba create -n pyferret python=3.8 -c conda-forge pyferret ferret_datasets --yes

# Activate the environment
micromamba activate pyferret
```

0 comments on commit 74430ea

Please sign in to comment.