mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:22:10 +02:00
37 lines
723 B
Markdown
37 lines
723 B
Markdown
# pipenv
|
|
|
|
> Simple and unified Python development workflow.
|
|
> Manages packages and the virtual environment for a project.
|
|
> More information: <https://pypi.org/project/pipenv>.
|
|
|
|
- Create a new project:
|
|
|
|
`pipenv`
|
|
|
|
- Create a new project using Python 3:
|
|
|
|
`pipenv --three`
|
|
|
|
- Install a package:
|
|
|
|
`pipenv install {{package_name}}`
|
|
|
|
- Install all the dependencies for a project:
|
|
|
|
`pipenv install`
|
|
|
|
- Install all the dependencies for a project (including dev packages):
|
|
|
|
`pipenv install --dev`
|
|
|
|
- Uninstall a package:
|
|
|
|
`pipenv uninstall {{package_name}}`
|
|
|
|
- Start a shell within the created virtual environment:
|
|
|
|
`pipenv shell`
|
|
|
|
- Generate a `requirements.txt` (list of dependencies) for a project:
|
|
|
|
`pipenv lock --requirements`
|