7 lines
137 B
Bash
Executable file
7 lines
137 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# install the required python packages
|
|
|
|
wd=$(dirname $0)
|
|
|
|
pip3 install -r "$wd/requirements.txt" -t "$wd/packages"
|