Skip to content

Instantly share code, notes, and snippets.

@glombard
Created November 16, 2013 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glombard/7503904 to your computer and use it in GitHub Desktop.
Save glombard/7503904 to your computer and use it in GitHub Desktop.
Install Python 3.3 and pip.
@echo off
REM powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://gist.github.com/glombard/7416112/raw/fb317426b2092a41770cf86b50463fb0c2f73706/get-curl.ps1'))"
curl -O http://python.org/ftp/python/3.3.2/python-3.3.2.msi
curl -O http://python-distribute.org/distribute_setup.py
curl -k -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
msiexec /i python-3.3.2.msi /passive /norestart /log %temp%\python-install.log
set PATH=%PATH%;C:\Python33
python distribute_setup.py
python get-pip.py
set PATH=%PATH%;C:\Python33\Scripts
setx PATH "%PATH%" /m
pip install markdown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment