Skip to content

Commit 1e381a7

Browse files
committed
Swap pip install command for conda commands to install dependencies
1 parent b90329c commit 1e381a7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup_environment.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ echo "Creating new virtual environment..."
99
python3 -m virtualenv ./venv
1010
echo "Installing required packages..."
1111
./venv/bin/pip install setuptools wheel twine
12-
./venv/bin/pip install -r requirements.txt
12+
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
1316

1417
echo "Done!"

0 commit comments

Comments
 (0)