From 1838966829348949a814e4dd017fd02ce9b363e4 Mon Sep 17 00:00:00 2001 From: Tara Raj Date: Fri, 7 Sep 2018 16:36:25 -0700 Subject: [PATCH] Update Python tools for WSL Updating script for dev_ml_wsl with correct list of Python tools --- dev_ml_wsl.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev_ml_wsl.ps1 b/dev_ml_wsl.ps1 index 3c28f4b..53d3e43 100644 --- a/dev_ml_wsl.ps1 +++ b/dev_ml_wsl.ps1 @@ -33,13 +33,13 @@ executeScript "CommonDevTools.ps1"; executeScript "VirtualizationTools.ps1"; executeScript "GetMLPythonSamplesOffGithub.ps1"; -# TODO: now install additional ML tools inside the WSL distro once default user w/blank password is working write-host "Installing tools inside the WSL distro..." Ubuntu1804 run apt update Ubuntu1804 run apt upgrade -y -Ubuntu1804 run apt install python3 python-pip -y -Ubuntu1804 run apt install python-numpy python-scipy pandas -y -Ubuntu1804 run pip install -U scikit-learn +## Install Python tools +Ubuntu1804 run apt install python2.7 python-pip -y +Ubuntu1804 run apt install python-numpy python-scipy -y +Ubuntu1804 run pip install pandas write-host "Finished installing tools inside the WSL distro" Enable-UAC