Files
wlan-lanforge-scripts/py-scripts/update_dependencies.py
2021-03-18 15:35:09 -07:00

11 lines
287 B
Python
Executable File

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