Files
wlan-lanforge-scripts/py-scripts/update_dependencies.py
Matthew Stidham bff0f9d393 Add datatable to update dependencies
Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
2021-02-19 10:32:57 -08:00

11 lines
310 B
Python
Executable File

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