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 <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-08-17 09:46:00 -06:00
parent 50daf7b798
commit 845135d0ca

View File

@@ -14,7 +14,8 @@ import subprocess
def main(): def main():
print("Installing Script Python3 Dependencies") print("Installing Script Python3 Dependencies")
packages = ['pandas', 'plotly', 'numpy', 'cryptography', 'paramiko', 'bokeh','pyarrow', 'websocket-client', 'xlsxwriter',\ 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_installed = []
packages_failed =[] packages_failed =[]
subprocess.call("pip3 uninstall jwt", shell=True) subprocess.call("pip3 uninstall jwt", shell=True)