summaryrefslogtreecommitdiff
path: root/setup/teardown_conda.sh
blob: 2fde7a5fb469cdbe00836743936af4d9a9049e67 (plain)
1
2
3
4
5
6
7
8
9
# taken from mobilitynet-analysis-scripts/setup/teardown_conda.sh
EXP_CONDA_VER=$1

if [ -z $EXP_CONDA_VER ]; then
    echo "Usage: teardown_conda.sh <version>"
else
    INSTALL_PREFIX=$HOME/miniconda-$EXP_CONDA_VER
    rm -rf $INSTALL_PREFIX
fi