pipenv: add example for not dev packages (#4880)

This commit is contained in:
Ivor Benderavage
2020-11-01 08:11:33 -05:00
committed by GitHub
parent f51e81fee4
commit e009d7ceba
4 changed files with 111 additions and 2 deletions

View File

@@ -16,7 +16,11 @@
`pipenv install {{package_name}}`
- Install all the dependencies for a project (including dev):
- Install all the dependencies for a project:
`pipenv install`
- Install all the dependencies for a project (including dev packages):
`pipenv install --dev`
@@ -28,6 +32,6 @@
`pipenv shell`
- Generate a requirements.txt for a project:
- Generate a `requirements.txt` (list of dependencies) for a project:
`pipenv lock --requirements`