Add datatable to update dependencies

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-02-19 10:32:01 -08:00
parent f3d0848c5c
commit bff0f9d393

View File

@@ -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)