6 lines
131 B
Bash
Executable File
6 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
if ! test -d venv; then
|
|
python3 -m venv venv
|
|
fi
|
|
source venv/bin/activate
|
|
pip3 install --upgrade -r requirements.txt |