upgrade workflow

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-02-28 11:33:07 -05:00
parent 5ba8c9cf24
commit 21eab5abbb
+13 -5
View File
@@ -138,18 +138,26 @@ Create a Pipfile.lock from the installed versions::
Install from that Pipfile.lock::
$ pipenv install --ignore-pipfile
$ pipenv install
Activate the pipenv shell::
$ pipenv shell
$ pipenv shell
Exit the pipenv shell::
$ exit
$ exit
.. _initialization:
☤ Example Pipenv upgrade workflow
---------------------------------
- Find out what's changed upstream: ``$ pipenv update --outdated``.
- Upgrade packages, two options:
a. Want to upgrade everything? Just do ``$ pipenv update``.
b. Want to upgrade packages one-at-a-time? ``$ pipenv update <pkg>`` for each outdated package.
☤ Importing from requirements.txt
---------------------------------