From 845135d0cad8166d15fddca5d06addc922200b4c Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Tue, 17 Aug 2021 09:46:00 -0600 Subject: [PATCH] update_dependencies.py : added dash and kaleido Kaleido is needed for png creation for presentation with lf_qa.py Dash is for the dashboard presentation Signed-off-by: Chuck SmileyRekiere --- py-scripts/update_dependencies.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py-scripts/update_dependencies.py b/py-scripts/update_dependencies.py index 0de0bc56..107a34ff 100755 --- a/py-scripts/update_dependencies.py +++ b/py-scripts/update_dependencies.py @@ -14,7 +14,8 @@ import subprocess def main(): print("Installing Script Python3 Dependencies") packages = ['pandas', 'plotly', 'numpy', 'cryptography', 'paramiko', 'bokeh','pyarrow', 'websocket-client', 'xlsxwriter',\ - 'pyshark', 'influxdb', 'influxdb-client', 'matplotlib', 'pdfkit', 'pip-search', 'pyserial', 'pexpect-serial' ,'scp', 'pyjwt'] + 'pyshark', 'influxdb', 'influxdb-client', 'matplotlib', 'pdfkit', 'pip-search', 'pyserial', 'pexpect-serial' ,'scp', 'pyjwt',\ + 'dash', 'kaleido'] packages_installed = [] packages_failed =[] subprocess.call("pip3 uninstall jwt", shell=True)