mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 14:50:16 +00:00
Fix pipenv install --dev description
By default, `pipenv install` will install packages based on the list in `Pipfile`, not `Pipfile.lock`. `pipenv install --dev` is no exception. I've tested this using pipenv 2018.7.1 with different package versions in `Pipfile` and `Pipfile.lock`. After `pipenv install`, the versions in `Pipfile` were the ones actually installed.
This commit is contained in:
committed by
Tzu-ping Chung
parent
408ed9be46
commit
51c3c8b600
+1
-1
@@ -287,7 +287,7 @@ The user can provide these additional parameters:
|
||||
folder is encoded into a "slug value" and appended to ensure the virtualenv name
|
||||
is unique.
|
||||
|
||||
- ``--dev`` — Install both ``develop`` and ``default`` packages from ``Pipfile.lock``.
|
||||
- ``--dev`` — Install both ``develop`` and ``default`` packages from ``Pipfile``.
|
||||
- ``--system`` — Use the system ``pip`` command rather than the one from your virtualenv.
|
||||
- ``--ignore-pipfile`` — Ignore the ``Pipfile`` and install from the ``Pipfile.lock``.
|
||||
- ``--skip-lock`` — Ignore the ``Pipfile.lock`` and install from the ``Pipfile``. In addition, do not write out a ``Pipfile.lock`` reflecting changes to the ``Pipfile``.
|
||||
|
||||
Reference in New Issue
Block a user