...
While there are many different python packaging systems (for example pipenv and poetry), we focus exclusively on venv
and conda
, with a strong preference for using venv
whenever possible, because it is the simplest method. Nevertheless, many different packages are exclusively distributed on conda
channels, so users are encouraged to use their discretion when deciding between these two options.
...
Before installing R packages, it can be useful to see if it’s already available. Imagine you are looking for ggplot2
. You can use the Lmod system to find it:
No Format |
---|
module spider ggplot2 module load r/4.4.1 r-ggplot2 |
...