Last active
March 7, 2016 18:04
-
-
Save glennsarti/f8af09990d2275edae2d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
ECHO Installing chocolatey... | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
ECHO Refreshing env... | |
CALL "C:\ProgramData\chocolatey\bin\RefreshEnv.cmd" | |
ECHO Installing Chrome and VC Redist 2010... | |
choco install googlechrome vcredist2010 -y | |
ECHO Installing Python (2.7.11)... | |
choco install python -version 2.7.11 -y | |
ECHO Refreshing env... | |
CALL "C:\ProgramData\chocolatey\bin\RefreshEnv.cmd" | |
ECHO Installing PIP... | |
python -m pip install --upgrade pip | |
python -m pip install pbr | |
ECHO Installing Openstack client.. | |
python -m pip install python-openstackclient | |
ECHO Installing Openstack Heat client.. | |
python -m pip install python-heatclient | |
ECHO Adding openstack tools to the path.. | |
SETX /M PATH "C:\tools\python\Scripts;%PATH%" | |
ECHO Refreshing env... | |
CALL "C:\ProgramData\chocolatey\bin\RefreshEnv.cmd" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment