mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
12 lines
175 B
Bash
12 lines
175 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ ! -e sandbox_venv3 ]; then
|
||
|
virtualenv -ppython3 sandbox_venv3
|
||
|
fi
|
||
|
|
||
|
. sandbox_venv3/bin/activate
|
||
|
|
||
|
pip install --no-deps -r sandbox/requirements3.txt
|