diff --git a/py-scripts/update_dependencies.py b/py-scripts/update_dependencies.py index 6c1258d1..39c12257 100755 --- a/py-scripts/update_dependencies.py +++ b/py-scripts/update_dependencies.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import subprocess def main(): - command = "pip3 install pandas seaborn plotly numpy dash paramiko bokeh websocket-client pyarrow xlsxwriter --upgrade" + command = "pip3 install pandas seaborn plotly numpy dash paramiko bokeh websocket-client pyarrow xlsxwriter datatable --upgrade" res = subprocess.call(command, shell = True) print("Returned Value: ", res)