more docs

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-27 09:43:04 -04:00
parent dad80fa2c1
commit 20fa3323ad
+7 -1
View File
@@ -257,7 +257,7 @@ the current working directory when working on packages::
Note that all sub-dependencies will get added to the ``Pipfile.lock`` as well.
Managing System Dependencies
Deploying System Dependencies
------------------------------
You can tell Pipenv to install things into it's parent system with the ``--system`` flag::
@@ -266,6 +266,12 @@ You can tell Pipenv to install things into it's parent system with the ``--syste
This is useful for Docker containers, and deployment infrastructure (e.g. Heroku does this).
Also useful for deployment is the ``install --deploy`` flag:
$ pipenv install --system --deploy
This will fail a build if the lockfile is outofdate, instead of genreating a new one.
☤ Generating a ``requirements.txt``
-----------------------------------