Mark up environment variables

This commit is contained in:
Zearin
2014-04-11 11:30:35 -04:00
parent f010d20802
commit b15f773f03
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -17,13 +17,13 @@ e.g. Python version 2.7 will install at :file:`C:\Python27\`, so that you can
have multiple versions of Python on the
same system without conflicts. Of course, only one interpreter can be the
default application for Python file types. It also does not automatically
modify the ``PATH`` environment variable, so that you always have control over
modify the :envvar:`PATH` environment variable, so that you always have control over
which copy of Python is run.
Typing the full path name for a Python interpreter each time quickly gets
tedious, so add the directories for your default Python version to the PATH.
tedious, so add the directories for your default Python version to the :envvar:`PATH`.
Assuming that your Python installation is in :file:`C:\Python27\`, add this to your
PATH:
:envvar:`PATH`:
.. code-block:: console