From 72b301b1acebef3cbc7752dfed861bbafe2e53d9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 17 Jan 2018 08:58:38 -0500 Subject: [PATCH] fix --- source/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started.rst b/source/getting-started.rst index 4312a80..69eaf15 100644 --- a/source/getting-started.rst +++ b/source/getting-started.rst @@ -53,7 +53,7 @@ Understanding Dependencies Applications, scripts, and utlities built with Python typicaly have *dependencies* attached to them, which are Python modules they require to run/operate with, that need to be installed before you can use the sotware. -A package manager, like *pipenv* (which we'll cover shortly), or the lower–level *pip* (in conjunction with *virtalenv* can be used to install and manage these dependencies, which are typically hosted on either on `PyPi (The Python Package Index) `_ or `GitHub `_. +A package manager, like *Pipenv* (which we'll cover shortly), or the lower–level *pip* (in conjunction with *virtalenv* can be used to install and manage these dependencies, which are typically hosted on either on `PyPi (The Python Package Index) `_ or `GitHub `_. You'll typically see these required packages (and any specific versions) declared in one of the following files: ``Pipfile``, ``requirements.txt``, or ``setup.py``.