From f00f46d2e57becab2480019e119b75e5839236e4 Mon Sep 17 00:00:00 2001 From: Maleo223 Date: Mon, 29 Oct 2018 18:32:24 -0400 Subject: [PATCH] Grammar/Sentence Structure Changes. (#22617) --- guide/english/python/using-pip/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/python/using-pip/index.md b/guide/english/python/using-pip/index.md index 4506078a361..924842f8bef 100644 --- a/guide/english/python/using-pip/index.md +++ b/guide/english/python/using-pip/index.md @@ -3,11 +3,11 @@ title: Python Using Pip --- We have seen how to use `import` statements to `import` various modules and to use them in our programs. Python itself comes with several built-in modules, but the Python community has more to offer. -> It's the modules that makes python so powerful! +> It's the modules that make Python so powerful! Third party modules add so much more functionality to Python. Now we would learn how to install these modules so that we can use those in our programs. -The simplest way is to use `pip` +The simplest way to install these modules is by using `pip`. pip install @@ -53,7 +53,7 @@ For example, we could create the file `requirements.txt` and its content: docutils>=0.14 Cython - In this file we could also set a version for the installation. + In this file, we could also set a version for the installation. After this, by invoking pip with: pip install -r