Files
wlan-lanforge-scripts/py-scripts/update_dependencies.py
Chuck SmileyRekiere cc90070988 update_dependencies.py : added influxdb_client
Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
2021-04-12 12:42:04 -06:00

11 lines
320 B
Python
Executable File

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