Skip to content

Instantly share code, notes, and snippets.

@glennsarti
Last active March 7, 2016 18:04
Show Gist options
  • Save glennsarti/f8af09990d2275edae2d to your computer and use it in GitHub Desktop.
Save glennsarti/f8af09990d2275edae2d to your computer and use it in GitHub Desktop.
@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