Skip to content

Commit 0ce0b77

Browse files
committed
refinining the install process
1 parent 8b945fe commit 0ce0b77

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ cd constraint-tools
88
bash install.sh
99
bash build-vue-app.sh
1010
```
11-
Only installation on Linux x86_64 is currently supported.
11+
Only installation on Linux x86_64 is currently supported.
12+
Tested in the Protected Environment of the Center for High Performance Computing (CHPC) at University of Utah.
1213

1314
## Quick Start
1415

install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ conda_environment="constraint-tools"
3030

3131
instruct_to_create_conda_environment_and_activate () {
3232
error "please issue the following commands:"
33+
info "\t[ module load anaconda ]"
3334
info "\tconda create --name ${conda_environment} python=3.9"
3435
info "\tconda activate ${conda_environment}"
3536
error "... and re-run this script"
@@ -49,7 +50,7 @@ if [[ $CONDA_DEFAULT_ENV != ${conda_environment} ]]; then
4950
instruct_to_create_conda_environment_and_activate
5051
fi
5152

52-
pip install --requirement ${CONSTRAINT_TOOLS}/install/requirements.txt
53+
pip install --no-cache-dir --requirement ${CONSTRAINT_TOOLS}/install/requirements.txt
5354

5455
##########################
5556

0 commit comments

Comments
 (0)