2023-11-03 11:02:53 +08:00

14 lines
304 B
Bash

set -ex
test -f "${PREFIX}/bin/micromamba"
micromamba --help
export MAMBA_ROOT_PREFIX="$(mktemp -d)"
micromamba create -n test --override-channels -c conda-forge --yes python=3.9
"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version
"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"
exit 0