Merge pull request #393 from Zearin/code-blocks

Code blocks
This commit is contained in:
Ian Cordasco
2014-04-01 21:02:57 -05:00
16 changed files with 119 additions and 80 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")