summaryrefslogtreecommitdiff
path: root/setup/setup.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/setup.sh
parent49cbd4bbe57cb81c63c564343b8f85186ea58b21 (diff)
setup directory for conda setup
Added setup directory for conda setup
Diffstat (limited to 'setup/setup.sh')
-rw-r--r--setup/setup.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/setup/setup.sh b/setup/setup.sh
new file mode 100644
index 0000000..d2631f9
--- /dev/null
+++ b/setup/setup.sh
@@ -0,0 +1,14 @@
+#taken from mobilitynet-analysis-scripts/setup/setup.sh
+# If the conda binary is not found, specify the full path to it
+# you can find it by searching for "conda" under the miniconda3 directory
+# typical paths are:
+# - on linux: /home/<user>/miniconda3/bin/conda
+# - on OSX: /Users/<user>/miniconda3/bin/conda
+# - on Windows: C:/Users/<user>/Miniconda3/Scripts/conda
+
+set -e
+
+source setup/checks/check_for_conda.sh
+
+conda env update --name toriis --file setup/environment.yml
+conda activate toriis