add influxdb to update_dependencies

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-04-12 10:54:02 -07:00
parent 03fb5f3b2b
commit d15be3b4a7

View File

@@ -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)