commands.sh

pipenv

all

Simple and unified Python development workflow. Manage packages and the virtual environment for a project.

More info →

Examples (8)

Create a new project

Create a new project using Python 3

pipenv --three

Install a package

pipenv install package

Install all the dependencies for a project

Install all the dependencies for a project (including dev packages)

Uninstall a package

pipenv uninstall package

Start a shell within the created virtual environment

pipenv shell

Generate a `requirements.txt` (list of dependencies) for a project

pipenv lock --requirements
made by @shridhargupta | data from tldr-pages