...
No Format |
---|
conda-containerize new --mamba --prefix <install_dir> env.yml |
Tip | ||
---|---|---|
| ||
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
|
When the installation is complete, you will find all the executables in your environment in <install_dir>/bin
.
...