mirror of
https://github.com/wassname/multifit.git
synced 2026-09-09 11:27:26 +08:00
11 lines
338 B
Bash
Executable File
11 lines
338 B
Bash
Executable File
#!/usr/bin/env bash -x
|
|
source /workspace/venv/bin/activate
|
|
PYTHON=${PYTHON:-"python"}
|
|
REPO="$( cd "$(dirname "$0")" ; cd .. ; pwd -P )"
|
|
cd $REPO
|
|
$PYTHON -m pip install -e .
|
|
$PYTHON -m pip install torch
|
|
$PYTHON -m pip install spacy
|
|
#$PYTHON -m spacy download en
|
|
$PYTHON -m pip install git+https://github.com/PiotrCzapla/sotabench-eval.git
|