Python 3 on Windows
From ICO wiki
Getting a Python 3 installer for Windows
Vanilla Python installer package is available from Python homepage under downloads www.python.org/downloads
From there select the newest Python 3
Installing Python
Make sure to select Add to PATH TODO
If you forgot to add Python to PATH
Rerun the installer, select Modify and then select Add to PATH
Installing things with pip
pip
is a Python package manager that enables easy installation
of different Python packages from the Python Package Index.
Available packages can be browsed on the browser using pypi.python.org or a new warehouse.python.org web page.
Packages can also be searched via pip search "keywords"
where "keywords" are the search words.
Packages can be installed with pip install "package"
command where "package" is the package you want to install.