11 lines
162 B
Bash
Executable File
11 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
# change this to #!/bin/bash for windows
|
|
|
|
if ! [ -d "venv" ]; then
|
|
./venv-setup.sh
|
|
fi
|
|
|
|
source ./venv/bin/activate
|
|
|
|
pip3 install -r requirements.txt
|