From cc90070988e5812fc39362d26e018ccaae65c574 Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Mon, 12 Apr 2021 12:41:48 -0600 Subject: [PATCH] update_dependencies.py : added influxdb_client Signed-off-by: Chuck SmileyRekiere --- py-scripts/update_dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/update_dependencies.py b/py-scripts/update_dependencies.py index bac5ebc8..453e187d 100755 --- a/py-scripts/update_dependencies.py +++ b/py-scripts/update_dependencies.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import subprocess def main(): - command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb --upgrade" + 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)