docs/**: Specify language for code-blocks (syntax highlighting! mmm…)

This commit is contained in:
Zearin
2014-03-28 13:26:24 -04:00
parent 471f86b3a8
commit 1e4b4a5460
11 changed files with 58 additions and 33 deletions
+3 -1
View File
@@ -53,7 +53,9 @@ line at the bottom of your ``~/.bashrc`` file
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
Now, we can install Python 2.7: ::
Now, we can install Python 2.7:
.. code-block:: console
$ brew install python
+5 -1
View File
@@ -25,9 +25,13 @@ tedious, so add the directories for your default Python version to the PATH.
Assuming that your Python installation is in ``C:\Python27\``, add this to your
PATH::
.. code-block:: console
C:\Python27\;C:\Python27\Scripts\
You can do this easily by running the following in ``powershell``::
You can do this easily by running the following in ``powershell``:
.. code-block:: console
[Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27\;C:\Python27\Scripts\", "User")