Files
wlan-lanforge-scripts/py-scripts/update_deps.py
Matthew Stidham 210e2615f1 update scripts
2021-01-27 17:15:20 -08:00

11 lines
248 B
Python

#!/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()