Fix installations in scripts again.

This commit is contained in:
Cassowary 2023-01-04 21:54:41 -08:00
parent 6cae68d5fb
commit 754c41345f
1 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ if [-eq "$REQUIREMENTS_PATH" ]; then
pip install -r "$REQUIREMENTS_PATH"
fi
pip freeze |grep voila || pip install voila==VOILA_VERSION
pip freeze |grep notebook || pip install notebook==NOTEBOOK_VERSION
pip freeze |grep ipykernel || pip install ipykernel==IPYKERNEL_VERSION
pip freeze |grep voila || pip install voila==$VOILA_VERSION
pip freeze |grep notebook || pip install notebook==$NOTEBOOK_VERSION
pip freeze |grep ipykernel || pip install ipykernel==$IPYKERNEL_VERSION
python -mvoila --no-browser --port=80 --Voila.ip=0.0.0.0 --autoreload=True $VOILA_OPTIONS