From ea1d3c9d222d3336302dbcd009ac783ab7e9b16c Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Tue, 27 Apr 2021 10:08:17 -0700 Subject: [PATCH] Adding libraries 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 6825758c..150605b2 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 influxdb-client --upgrade" + command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb influxdb-client matplotlib pdfkit pip-search --upgrade" res = subprocess.call(command, shell = True) print("Returned Value: ", res)