8 lines
141 B
Bash
8 lines
141 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# install the required python packages
|
||
|
|
||
|
wd=$(dirname $0)
|
||
|
|
||
|
pip3 install -r "$wd/pip-dependencies.txt" -t "$wd/packages"
|