For these envs, the *.yaml
files are the abstract requirements for the environment. To actually make the environment,
use need to use conda-lock
with the *.lock
files.
To generate the lock files, use the following command:
python lock-des-envs.py v<N>/<name of env>.yaml
To create an environment from a lock file, use this command:
conda-lock install -n <name of env> <path to lock file>
The name of the environment can be different than that of the lockfile.
These files were generated via conda list --explicit
on the envs at NERSC on 2024-07-19.
To create the environment, run
conda create --name <env> --file <this file>
note: an older version of numpy was required for running fitvd as done by desdm; specifically,
name: des-y6-fitvd
channels:
- conda-forge
- default
dependencies:
- des-fitvd
- shredx
- numpy=1.23.5