summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicole Harris <n.harris@kabucreative.com>2020-11-24 08:45:48 +0000
committerNicole Harris <n.harris@kabucreative.com>2020-11-24 08:45:48 +0000
commit0d06161753f9a28d9a969ae06be84138d81964d8 (patch)
tree236e4b593b7b3c7555a9937c6395f0166fbf7187
parentf0e8d996e368857eebc0ab31f21efeb446943c3d (diff)
downloadpip-docs-quickstart.tar.gz
Make requirements.txt heading more explicitdocs-quickstart
-rw-r--r--docs/html/quickstart.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/quickstart.rst b/docs/html/quickstart.rst
index fef76351a..25ecd9827 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 from requirements.txt
+--------------------------------------
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 <Requirements Files>` for more information.