File tree Expand file tree Collapse file tree
partitioned-pipe-multiscale Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,9 +4,12 @@ set -e -u
44. ../../tools/log.sh
55exec > >( tee --append " $LOGFILE " ) 2>&1
66
7- python3 -m venv .venv
8- . .venv/bin/activate
9- pip install -r requirements.txt && pip freeze > pip-installed-packages.log
7+ if [ ! -v PRECICE_TUTORIALS_NO_VENV ]
8+ then
9+ python3 -m venv .venv
10+ . .venv/bin/activate
11+ pip install -r requirements.txt && pip freeze > pip-installed-packages.log
12+ fi
1013
1114NUTILS_RICHOUTPUT=no python3 ../solver-fluid1d-nutils/Fluid1D.py side=Left
1215
Original file line number Diff line number Diff line change @@ -4,9 +4,12 @@ set -e -u
44. ../../tools/log.sh
55exec > >( tee --append " $LOGFILE " ) 2>&1
66
7- python3 -m venv .venv
8- . .venv/bin/activate
9- pip install -r requirements.txt && pip freeze > pip-installed-packages.log
7+ if [ ! -v PRECICE_TUTORIALS_NO_VENV ]
8+ then
9+ python3 -m venv .venv
10+ . .venv/bin/activate
11+ pip install -r requirements.txt && pip freeze > pip-installed-packages.log
12+ fi
1013
1114NUTILS_RICHOUTPUT=no python3 ../solver-fluid1d-nutils/Fluid1D.py side=Right
1215
You can’t perform that action at this time.
0 commit comments