Notes/src/Shell/Utils/install-base-flask-libs

12 lines
244 B
Plaintext
Raw Normal View History

2021-02-21 01:25:30 +00:00
#!/bin/bash
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
2022-02-15 23:14:47 +00:00
pip3 install flask simplejson watchdog
2021-02-21 01:25:30 +00:00
}
main $@;