Merge pull request #4 from volf52/fix-getstarted

Fixed typos in getting-started.rst
This commit is contained in:
2018-01-18 11:40:46 -05:00
committed by GitHub
+2 -2
View File
@@ -37,7 +37,7 @@ Twitter is an excellent way to keep in touch with what's going on with the Pytho
- **Raymond Hettinger** (`@raymondh <https://twitter.com/raymondh>`_)
- **Jeff Forcier** (`@bitprophet <https://twitter.com/bitprophet>`_) — The creator of Fabric, and maintiner of many open source libraries.
- **Jeff Forcier** (`@bitprophet <https://twitter.com/bitprophet>`_) — The creator of Fabric, and maintainer of many open source libraries.
Getting Python Installed
------------------------
@@ -77,7 +77,7 @@ Here's a great `blog post <https://bryson3gps.wordpress.com/2017/11/08/stop-ever
Using Pipenv
------------
First, ``$ cd`` into your new project directory (after you ``$ mkdir`` and ``$ git init`` it, of course), and simply run ``$ pipenv install requests`` to instal the `requests <https://docs.python-requests.org/>`_ library, which is one of our favorites.
First, ``$ cd`` into your new project directory (after you ``$ mkdir`` and ``$ git init`` it, of course), and simply run ``$ pipenv install requests`` to install the `requests <https://docs.python-requests.org/>`_ library, which is one of our favorites.
Then, run ``$ pipenv shell`` to run a shell that will have a ``$ python`` available in which ``import reqests`` will function properly. Pretty simple :)