Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
conda-containerize new --mamba --prefix <install_dir> env.yml
Tip
titleCPU, Memory and Temporary Storage limitations

If your environment is a complex one, and you are performing the installation from a standard interactive login session, you may hit some limitations in the cpus available, amount of memory or temporary storage. If that is the case, you can .

For example, a typical AI/ML environment may require more than 20 GB of memory and 30 GB of local TMPDIR space. On top of that, creating the image is also a cpu-intensive task that may take some time if run on the default 2 cpus of a login session.

We recommend you to either submit the installation as a batch job specifying higher cpus, memory or storage requirements, or do it interactively with with ecinteractive requesting the necessary resources. For example, a typical AI/ML environment may require more than Here is an example requesting an ecinteractive session with 8 cpus, 20 GB of memory RAM and 30 GB of local TMPDIR space. You may get such session with ecinteractivetemporary local disk storage:

No Format
ecinteractive -c 48 -m 20 -s 30


When the installation is complete, you will find all the executables in your environment in <install_dir>/bin.

...