tldr/pages/common/pipenv.md

38 lines
713 B
Markdown
Raw Normal View History

2017-12-15 03:20:25 +00:00
# pipenv
> Simple and unified Python development workflow.
> Manages packages and the virtual environment for a project.
> More information: <https://pypi.org/project/pipenv>.
2017-12-15 03:20:25 +00:00
- Create a new project:
`pipenv`
- Create a new project using Python 3:
`pipenv --three`
- Install a package:
`pipenv install {{package}}`
2017-12-15 03:20:25 +00:00
- Install all the dependencies for a project:
`pipenv install`
- Install all the dependencies for a project (including dev packages):
2017-12-15 03:20:25 +00:00
`pipenv install --dev`
- Uninstall a package:
`pipenv uninstall {{package}}`
2017-12-15 03:20:25 +00:00
- Start a shell within the created virtual environment:
`pipenv shell`
- Generate a `requirements.txt` (list of dependencies) for a project:
`pipenv lock --requirements`