@@ -24,11 +24,11 @@ from your command line. You can check this by simply running:
24
24
25
25
.. code-block :: bash
26
26
27
- python --version
27
+ $ python --version
28
28
29
29
You should get some output like ``3.6.2 ``. If you do not have Python, please
30
30
install the latest 3.x version from `python.org `_ or refer to the
31
- `Installing Python `_ section of the Hitchhiker's Guide to Python .
31
+ `Installing Python `_ section of this guide .
32
32
33
33
.. Note :: If you're newcomer and you get an error like this:
34
34
@@ -49,7 +49,7 @@ check this by running:
49
49
50
50
.. code-block :: bash
51
51
52
- pip --version
52
+ $ pip --version
53
53
54
54
If you installed Python from source, with an installer from `python.org `_, or
55
55
via `Homebrew `_ you should already have pip. If you're on Linux and installed
@@ -75,7 +75,7 @@ Use ``pip`` to install Pipenv:
75
75
76
76
.. code-block :: python
77
77
78
- pip install -- user pipenv
78
+ $ pip install -- user pipenv
79
79
80
80
81
81
.. Note :: This does a `user installation`_ to prevent breaking any system-wide
@@ -104,8 +104,8 @@ tutorial) and run:
104
104
105
105
.. code-block :: bash
106
106
107
- cd myproject
108
- pipenv install requests
107
+ $ cd myproject
108
+ $ pipenv install requests
109
109
110
110
Pipenv will install the excellent `Requests `_ library and create a ``Pipfile ``
111
111
for you in your project's directory. The :ref: `Pipfile ` is used to track which
@@ -161,7 +161,7 @@ Then you can run this script using ``pipenv run``:
161
161
162
162
.. code-block :: bash
163
163
164
- pipenv run python main.py
164
+ $ pipenv run python main.py
165
165
166
166
You should get output similar to this:
167
167
0 commit comments