@@ -4,14 +4,17 @@ Installing Python on Windows
44============================
55
66First, 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
1315By 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
1518same system without conflicts. Of course, only one interpreter can be the
1619default application for Python file types. It also does not automatically
1720modify 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.
3136You do not need to install or configure anything else to use Python. Having
3237said that, I would strongly recommend that you install the tools and libraries
3338described in the next section before you start building Python applications for
0 commit comments