10 lines
143 B
Bash
Executable file
10 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
python -m venv venv
|
|
. ./venv/bin/activate
|
|
|
|
|
|
pip install --requirement requirements.txt
|