This commit is contained in:
2018-01-17 08:58:38 -05:00
parent 5031b35f1d
commit 72b301b1ac
+1 -1
View File
@@ -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 lowerlevel *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) <https://pypi.python.org/>`_ or `GitHub <https://github.com/>`_.
A package manager, like *Pipenv* (which we'll cover shortly), or the lowerlevel *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) <https://pypi.python.org/>`_ or `GitHub <https://github.com/>`_.
You'll typically see these required packages (and any specific versions) declared in one of the following files: ``Pipfile``, ``requirements.txt``, or ``setup.py``.