Files
windows-dev-box-setup-scripts/scripts/PythonMLTools.ps1
Gary Ewan Park ee2a2cf65b Apply Choco Best Practices (#77)
* (maint) Corrected whitespace

* (GH-15) Apply Choco Best Practices
2018-10-18 05:08:15 -07:00

20 lines
375 B
PowerShell

# Install python
choco install -y python --version=3.5.4
# 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
pip install keras
# Get Visual Studio C++ Redistributables
choco install -y vcredist2015