You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
151 B
Bash
13 lines
151 B
Bash
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
python3 -m venv venv
|
||
|
|
||
|
source ./venv/bin/activate
|
||
|
|
||
|
python3 -m pip install -r requirements.txt
|
||
|
|
||
|
python3 menu.py "$1"
|
||
|
|
||
|
exit 0
|