]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43777: Drop description of "pip search" command from tutorial (GH-25287)
authorBob Kline <bkline@users.noreply.github.com>
Wed, 14 Apr 2021 05:09:32 +0000 (01:09 -0400)
committerGitHub <noreply@github.com>
Wed, 14 Apr 2021 05:09:32 +0000 (14:09 +0900)
Doc/tutorial/venv.rst

index c4ae6b6e9931feb198a1db830ebb521e4c5b256d..221c11ca74b4ef51776cb7e51088db9fc9ba7ae2 100644 (file)
@@ -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``.)