From 210e2615f1cd8baf7887527010ee6d90454cc009 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Fri, 22 Jan 2021 15:51:31 -0800 Subject: [PATCH] update scripts --- py-scripts/update_deps.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 py-scripts/update_deps.py diff --git a/py-scripts/update_deps.py b/py-scripts/update_deps.py new file mode 100644 index 00000000..dac713ce --- /dev/null +++ b/py-scripts/update_deps.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +import subprocess +def main(): + command = "pip install pandas seaborn plotly numpy dash --upgrade" + res = subprocess.call(command, shell = True) + + print("Returned Value: ", res) + +if __name__ == "__main__": + main()