Install tools in WSL, starting with just the ML recipe (#68)

This commit is contained in:
Yosef Durr
2018-08-29 23:27:32 -07:00
committed by GitHub
parent a01e84f8ed
commit a37b28ab2e
3 changed files with 15 additions and 15 deletions

View File

@@ -34,6 +34,13 @@ 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
write-host "Finished installing tools inside the WSL distro"
Enable-UAC
Enable-MicrosoftUpdate