Windows + Python
A quick way to setup Python in Windows.
Download Chocolatey - A package manager for Windows.
choco install python2
PS C:\Windows\system32> which python
/c/Python27/python
PS C:\Windows\system32> python
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:53:40) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print "awesome!"
awesome!
References