Adding missing dependency to update_dependencies

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-24 10:05:04 -07:00
parent 952bab4acb
commit 980a9435d6

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 --upgrade"
command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)