1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/bin/bash
set -e
"${SHELL}" <(curl -Ls micro.mamba.pm/install.sh) < /dev/null
conda init --all
micromamba shell init -s bash
micromamba env create -f environment.yml --yes
# Note that `micromamba activate numpy-dev` doesn't work, it must be run by the
# user (same applies to `conda activate`)
git submodule update --init
# Enables users to activate environment without having to specify the full path
echo "envs_dirs:
- /home/codespace/micromamba/envs" > /opt/conda/.condarc
|