From d15be3b4a79f85e2cc35688763a358d8b4541533 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Mon, 12 Apr 2021 10:54:02 -0700 Subject: [PATCH] add influxdb to update_dependencies Signed-off-by: Matthew Stidham --- 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 b8c1abee..bac5ebc8 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 --upgrade" + command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb --upgrade" res = subprocess.call(command, shell = True) print("Returned Value: ", res)