Files
wlan-lanforge-scripts/py-scripts/update_dependencies.py
2021-02-05 11:24:40 -08:00

11 lines
257 B
Python

#!/usr/bin/env python3
import subprocess
def main():
command = "pip install pandas seaborn plotly numpy dash paramiko --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)
if __name__ == "__main__":
main()