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)