summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorBob Kline <bkline@users.noreply.github.com>2021-04-14 05:09:32 (GMT)
committerGitHub <noreply@github.com>2021-04-14 05:09:32 (GMT)
commit133705b85cc25d1e6684d32f8943ca288fadfda0 (patch)
tree1f4f8fe2f2e8382db965f11b4f12e72f8515a23a /Doc/tutorial
parent37494b441aced0362d7edd2956ab3ea7801e60c8 (diff)
downloadcpython-133705b85cc25d1e6684d32f8943ca288fadfda0.zip
cpython-133705b85cc25d1e6684d32f8943ca288fadfda0.tar.gz
cpython-133705b85cc25d1e6684d32f8943ca288fadfda0.tar.bz2
bpo-43777: Drop description of "pip search" command from tutorial (GH-25287)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/venv.rst15
1 files changed, 2 insertions, 13 deletions
diff --git a/Doc/tutorial/venv.rst b/Doc/tutorial/venv.rst
index c4ae6b6..221c11c 100644
--- a/Doc/tutorial/venv.rst
+++ b/Doc/tutorial/venv.rst
@@ -95,20 +95,9 @@ Managing Packages with pip
You can install, upgrade, and remove packages using a program called
:program:`pip`. By default ``pip`` will install packages from the Python
Package Index, <https://pypi.org>. You can browse the Python
-Package Index by going to it in your web browser, or you can use ``pip``'s
-limited search feature:
+Package Index by going to it in your web browser.
-.. code-block:: bash
-
- (tutorial-env) $ pip search astronomy
- skyfield - Elegant astronomy for Python
- gary - Galactic astronomy and gravitational dynamics.
- novas - The United States Naval Observatory NOVAS astronomy library
- astroobs - Provides astronomy ephemeris to plan telescope observations
- PyAstronomy - A collection of astronomy related tools for Python.
- ...
-
-``pip`` has a number of subcommands: "search", "install", "uninstall",
+``pip`` has a number of subcommands: "install", "uninstall",
"freeze", etc. (Consult the :ref:`installing-index` guide for
complete documentation for ``pip``.)