From 07175025d5fb0e25d71a583e9418938f7f16707d Mon Sep 17 00:00:00 2001 From: kmolo Date: Thu, 25 Sep 2014 17:19:57 -0700 Subject: [PATCH] wrapping 'easy_install pip' step in code block in Windows setup instructions, wrapping 'easy_install pip' step in bash code block, so it stands out and doesn't get skipped during setup --- .../_posts/Begin/2013-09-29-Setup-your-machine.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/website/_posts/Begin/2013-09-29-Setup-your-machine.md b/website/_posts/Begin/2013-09-29-Setup-your-machine.md index f3cfa679..7e958d07 100644 --- a/website/_posts/Begin/2013-09-29-Setup-your-machine.md +++ b/website/_posts/Begin/2013-09-29-Setup-your-machine.md @@ -196,7 +196,18 @@ Download git [here](http://msysgit.github.io/). This installs git for Windows, 1. You’ll first need to install setuptools, and use `ez_setup.py` to run it. Download [ez_setup.py](https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py) and run it. 2. Once installation is complete, you will find an `easy_install.exe` program in your Python `Scripts` subdirectory. For simple invocation and best results, add this directory to your `PATH` environment variable, if it is not already present. -3. Next, run `easy_install pip` to install [pip](https://pypi.python.org/pypi/pip). +3. Next, run the following command to install [pip](https://pypi.python.org/pypi/pip): + + ```bash + $ easy_install pip + ``` + + or, if you get a permission error: + + ```bash + $ sudo easy_install pip + ``` + 4. Open/run the Git Bash program. **NOTE**: Windows users: We will use this Git Bash program for whenever the “terminal”, “shell”, or “command line” is referred to. 5. Run the following command to install [virtualenv](http://www.virtualenv.org/en/latest/#installation):