Adding libraries to update_dependencies

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-04-27 10:08:17 -07:00
parent 0810ff03fd
commit ea1d3c9d22

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