diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2022-04-09 18:37:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-09 18:37:01 (GMT) |
commit | dc14e33eff1df31f7c239a8785161db8849cae74 (patch) | |
tree | f07e46b7627449d9590111e7811d5a18ca45f626 /Doc/library/itertools.rst | |
parent | f52d987abfda25e50469c9b6fe1d19f72453d2de (diff) | |
download | cpython-dc14e33eff1df31f7c239a8785161db8849cae74.zip cpython-dc14e33eff1df31f7c239a8785161db8849cae74.tar.gz cpython-dc14e33eff1df31f7c239a8785161db8849cae74.tar.bz2 |
bpo-22295: use python -m pip rather than plain pip in more examples (GH-24003)
Diffstat (limited to 'Doc/library/itertools.rst')
-rw-r--r-- | Doc/library/itertools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 8c3b784..26c9253 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -721,7 +721,7 @@ Substantially all of these recipes and many, many others can be installed from the `more-itertools project <https://pypi.org/project/more-itertools/>`_ found on the Python Package Index:: - pip install more-itertools + python -m pip install more-itertools The extended tools offer the same high performance as the underlying toolset. The superior memory performance is kept by processing elements one at a time |