diff options
Diffstat (limited to 'scripts/install_eval_deps.sh')
-rw-r--r-- | scripts/install_eval_deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install_eval_deps.sh b/scripts/install_eval_deps.sh index 8fa5316..b57a654 100644 --- a/scripts/install_eval_deps.sh +++ b/scripts/install_eval_deps.sh @@ -1,5 +1,5 @@ set -euo pipefail export PYTHONUSERBASE=/snekbox/user_base -find /lang/python -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0I{} bash -c \ +find /snekbin/python -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0I{} bash -c \ '{}/bin/python -m pip install --user -U -r requirements/eval-deps.pip' \; |