diff options
Diffstat (limited to 'doc/install.rst')
-rw-r--r-- | doc/install.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/install.rst b/doc/install.rst index f3e015e4..1b940b4b 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -15,19 +15,19 @@ Installation You can install coverage.py in the usual ways. The simplest way is with pip:: - $ pip install coverage + $ python3 -m pip install coverage .. ifconfig:: prerelease To install a pre-release version, you will need to specify ``--pre``:: - $ pip install --pre coverage + $ python3 -m pip install --pre coverage or the exact version you want to install: .. parsed-literal:: - $ pip install |coverage-equals-release| + $ python3 -m pip install |coverage-equals-release| .. _install_extension: |