File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ these steps:
48
48
49
49
#. Install the requirements::
50
50
51
- $ pip install -r requirements/dev.pip
51
+ $ python3 -m pip install -r requirements/dev.pip
52
52
53
53
#. Install a number of versions of Python. Coverage.py supports a range
54
54
of Python versions. The more you can test with, the more easily your code
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Getting started is easy:
56
56
57
57
#. Install coverage.py::
58
58
59
- $ pip install coverage
59
+ $ python3 -m pip install coverage
60
60
61
61
For more details, see :ref:`install`.
62
62
Original file line number Diff line number Diff line change @@ -15,19 +15,19 @@ Installation
15
15
16
16
You can install coverage.py in the usual ways. The simplest way is with pip::
17
17
18
- $ pip install coverage
18
+ $ python3 -m pip install coverage
19
19
20
20
.. ifconfig :: prerelease
21
21
22
22
To install a pre-release version, you will need to specify ``--pre ``::
23
23
24
- $ pip install --pre coverage
24
+ $ python3 -m pip install --pre coverage
25
25
26
26
or the exact version you want to install:
27
27
28
28
.. parsed-literal ::
29
29
30
- $ pip install |coverage-equals-release |
30
+ $ python3 -m pip install |coverage-equals-release |
31
31
32
32
.. _install_extension :
33
33
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ a coverage.py plug-in called ``something.plugin``.
29
29
30
30
.. code-block :: sh
31
31
32
- $ pip install something
32
+ $ python3 -m pip install something
33
33
34
34
#. Configure coverage.py to use the plug-in. You do this by editing (or
35
35
creating) your .coveragerc file, as described in :ref: `config `. The
You can’t perform that action at this time.
0 commit comments