summaryrefslogtreecommitdiff
path: root/setup/teardown_conda.sh
diff options
context:
space:
mode:
authorkennykos <“gkosmacher01@gmail.com”>2023-02-15 16:06:05 -0600
committerkennykos <“gkosmacher01@gmail.com”>2023-02-15 16:06:05 -0600
commitb6b578249e447614f7a9e07c7b2343e625d21101 (patch)
tree9f0e68432200809698b0ec230d2125c309204f57 /setup/teardown_conda.sh
parent49cbd4bbe57cb81c63c564343b8f85186ea58b21 (diff)
setup directory for conda setup
Added setup directory for conda setup
Diffstat (limited to 'setup/teardown_conda.sh')
-rw-r--r--setup/teardown_conda.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/setup/teardown_conda.sh b/setup/teardown_conda.sh
new file mode 100644
index 0000000..2fde7a5
--- /dev/null
+++ b/setup/teardown_conda.sh
@@ -0,0 +1,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