From 675f6e3938c4e4b6be9962d90a1931fbe3e82b27 Mon Sep 17 00:00:00 2001 From: Nicole Harris Date: Tue, 17 Nov 2020 06:50:21 +0000 Subject: [PATCH] Make requirements.txt heading more explicit --- docs/html/quickstart.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/html/quickstart.rst b/docs/html/quickstart.rst index fef76351aae..ad4304d8324 100644 --- a/docs/html/quickstart.rst +++ b/docs/html/quickstart.rst @@ -123,8 +123,8 @@ This is useful if the target machine does not have a network connection: [...] Successfully installed SomePackage -Install packages from a file ----------------------------- +Install packages listed in a file +--------------------------------- Many Python projects use a requirements.txt file to specify the list of packages that need to be installed for the project to run. To install the packages @@ -140,7 +140,7 @@ listed in the file, run: .. code-block:: console - C:\> py -m pip install -r requirements.txt + C:\> py -m pip install -r requirements.txt See :ref:`requirements files ` for more information.