Skip to content

Instantly share code, notes, and snippets.

@sundayguru
Last active August 20, 2016 09:48
Show Gist options
  • Save sundayguru/7f52d3c7d23a541a3730e20685f8ce45 to your computer and use it in GitHub Desktop.
Save sundayguru/7f52d3c7d23a541a3730e20685f8ce45 to your computer and use it in GitHub Desktop.
How to setup your window system for python development
1. Download and Install latest python release for windows https://www.python.org/downloads/windows/
2. Download and save https://bootstrap.pypa.io/get-pip.py in any directory of choice
3. Navigate to the root directory where `get-pip.py` is save in command line
4. Run ` python get-pip.py ` to install pip
5. If pip command is not available in command line after you restart it, add the location where it is installed into your environment variables.
Default location for python 2.7 is ` C:\Python27\Scripts `. visit https://pip.pypa.io/en/stable/installing/ for more information.
6. Run `pip install virtualenvwrapper` to install virtual environment. visit https://virtualenvwrapper.readthedocs.io/en/latest/ for full installation details
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment