summaryrefslogtreecommitdiff
path: root/.devcontainer/setup.sh
blob: 4ea718ec927fe39c30f346b3a3f6581cf9a85dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

curl micro.mamba.pm/install.sh | bash

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