Files
windows-dev-box-setup-scripts/scripts/PythonMLTools.ps1
2018-08-09 16:48:09 -07:00

19 lines
355 B
PowerShell

# 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