Added python ML set up scripts

This commit is contained in:
mscraigloewen
2018-08-09 16:25:25 -07:00
parent 09b86292a2
commit 56dd456264
3 changed files with 23 additions and 3 deletions

View File

@@ -0,0 +1,3 @@
# Using vscode as a default IDE
choco install -y vscode
choco install -y git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"'

18
scripts/PythonMLTools.ps1 Normal file
View File

@@ -0,0 +1,18 @@
# Install python
choco install python --version 3.5.4 -y
# Refresh path
refreshenv
# Update pip
python -m pip install --upgrade pip
# Install ML related python packages through pip
pip install numpy
pip install scipy
pip install pandas
pip install matplotlib
pip install tensorflow
# Get Visual Studio C++ Redistributables
choco install vcredist2015