update scripts

This commit is contained in:
Matthew Stidham
2021-01-22 15:51:31 -08:00
committed by Jed Reynolds
parent 1bacc79ec9
commit 210e2615f1

10
py-scripts/update_deps.py Normal file
View File

@@ -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()