We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5216b7 commit 5053047Copy full SHA for 5053047
1 file changed
devtools/install_all.sh
@@ -79,6 +79,15 @@ make
79
80
conda deactivate
81
82
+# Create or update t3_env
83
+cd ..
84
+cd T3 || { echo "Cannot find T3 directory"; exit 1; }
85
+if { $COMMAND_PKG env list | grep 't3_env'; } >/dev/null 2>&1; then
86
+ $COMMAND_PKG env update -n t3_env -f environment.yml
87
+else
88
+ $COMMAND_PKG env create -f environment.yml
89
+fi;
90
+
91
# Switch to t3_env and clone/install ARC
92
if [ "$COMMAND_PKG" == "micromamba" ]; then
93
micromamba activate t3_env
0 commit comments