From 799cfc457964eb73dba55b9997bf83c832a37660 Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Wed, 5 May 2021 12:54:19 -0600 Subject: [PATCH] update_dependencies.py : added pyserial (work to do for being root). Signed-off-by: Chuck SmileyRekiere --- py-scripts/update_dependencies.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py-scripts/update_dependencies.py b/py-scripts/update_dependencies.py index 7ec89a72..f88a7320 100755 --- a/py-scripts/update_dependencies.py +++ b/py-scripts/update_dependencies.py @@ -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()