minimal / justfile
jrnold's picture
Commit of the model
bdff6f4
raw
history blame contribute delete
351 Bytes
set shell := ["/usr/local/bin/zsh", "-cu"]
venv_dir := justfile_directory() / ".venv"
python := venv_dir / "bin" / "python3"
install:
#!/usr/bin/env zsh
set -e
source {{ venv_dir }}/bin/activate
python -m pip install --upgrade pip wheel
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt