Skip to content

Commit 54fff44

Browse files
committed
Update docs/starting/install/win.rst
1 parent 29f6248 commit 54fff44

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

docs/starting/install/win.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ Installing Python on Windows
44
============================
55

66
First, download the `latest version <http://python.org/ftp/python/2.7.2/python-2.7.2.msi>`_
7-
of Python 2 from the official Website.
7+
of Python 2 from the official Website. If you want to be sure you are installing a fully
8+
up-to-date version then use the "Windows Installer" link from the home page of the
9+
`Python.org web site <http://python.org>`_ .
810

9-
The Windows version is provided as an MSI package. To install it manually, just
11+
The Windows version is provided as an MSI package. To install it manually, just
1012
double-click the file. The MSI package format allows Windows administrators to
11-
automate installation with their standard tools.
13+
automate installation with their standard tools.
1214

1315
By design, Python installs to a directory with the version number embedded,
14-
e.g. ``C:\Python27\``, so that you can have multiple versions of Python on the
16+
e.g. Python version 2.7 will install at ``C:\Python27\``, so that you can
17+
have multiple versions of Python on the
1518
same system without conflicts. Of course, only one interpreter can be the
1619
default application for Python file types. It also does not automatically
1720
modify the ``PATH`` environment variable, so that you always have control over
@@ -28,6 +31,8 @@ You can do this easily by running the following in ``powershell``::
2831

2932
[Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27\;C:\Python27\Scripts\", "User")
3033

34+
The second (``Scripts``) directory receives command files when certain
35+
packages are installed, so it is a very useful addition.
3136
You do not need to install or configure anything else to use Python. Having
3237
said that, I would strongly recommend that you install the tools and libraries
3338
described in the next section before you start building Python applications for

0 commit comments

Comments
 (0)