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