We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90329c commit 1e381a7Copy full SHA for 1e381a7
setup_environment.sh
@@ -9,6 +9,9 @@ echo "Creating new virtual environment..."
9
python3 -m virtualenv ./venv
10
echo "Installing required packages..."
11
./venv/bin/pip install setuptools wheel twine
12
-./venv/bin/pip install -r requirements.txt
+CONDA_BASE=$(conda info --base)
13
+source "${CONDA_BASE}/etc/profile.d/conda.sh"
14
+conda env update --prune --file environment.yml
15
+conda activate coast
16
17
echo "Done!"
0 commit comments