update_dependencies.py : added pyserial (work to do for being root).

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-05-05 12:54:19 -06:00
parent 0c43fbea02
commit 799cfc4579

View File

@@ -2,8 +2,8 @@
import subprocess
def main():
print("Installing Script Python3 Dependencies")
packages = ['pandas', 'plotly', 'numpy', 'paramiko', 'bokeh', 'websocket-client', 'pyarrow', 'xlsxwriter',\
'pyshark', 'influxdb', 'influxdb-client', 'matplotlib', 'pdfkit', 'pip-search' ]
packages = ['pandas', 'plotly', 'numpy', 'cryptography', 'paramiko', 'bokeh','pyarrow', 'websocket-client', 'xlsxwriter',\
'pyshark', 'influxdb', 'influxdb-client', 'matplotlib', 'pdfkit', 'pip-search', 'pyserial' ]
packages_installed = []
packages_failed =[]
for package in packages:
@@ -20,7 +20,7 @@ def main():
print("Install Complete")
print("Packages Installed Success: {}".format(packages_installed))
print("Packages Failed (Some scripts may not need): {}".format(packages_failed))
print("Packages Failed (Some scripts may not need these packages): {}".format(packages_failed))
if __name__ == "__main__":
main()