Skip to content

Commit 6423180

Browse files
author
Kenneth Reitz
committed
fixes
1 parent 366202c commit 6423180

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/starting/install/win.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To obtain the latest version of Distribute for Windows, run the python script av
2828

2929
You'll now have a new command available to you: **easy_install**. It is considered by many to be deprecated, so we will install its replacement: **pip**. Pip allows for uninstallation of packages, and is actively maintained, unlike easy_install.
3030

31-
To install pip, simply open a command prompt and run: ::
31+
To install pip, simply open a command prompt and run::
3232

3333
> easy_install pip
3434

@@ -38,12 +38,12 @@ Virtualenv
3838

3939
After Distribute & Pip, the next development tool that you should install is `virtualenv <http://pypi.python.org/pypi/virtualenv/>`_. Use pip:
4040

41-
> pip virtualenv
41+
> pip install virtualenv
4242

4343
The virtualenv kit provides the ability to create virtual Python environments that do not interfere with either each other, or the main Python installation. If you install virtualenv before you begin coding then you can get into the habit of using it to create completely clean Python environments for each project. This is particularly important for Web development, where each framework and application will have many dependencies.
4444

4545

46-
To set up a new Python environment, change the working directory to where ever you want to store the environment, and run the virtualenv utility in your project's directory:
46+
To set up a new Python environment, change the working directory to where ever you want to store the environment, and run the virtualenv utility in your project's directory::
4747

4848
> virtualenv --distribute venv
4949

0 commit comments

Comments
 (0)