pipenv [OPTIONS] COMMAND [ARGS]...
Checks for PyUp Safety security vulnerabilities and against PEP 508 markers provided in Pipfile.
pipenv check [OPTIONS]
Uninstalls all packages not specified in Pipfile.lock.
pipenv clean [OPTIONS]
Displays currently–installed dependency graph information.
pipenv graph [OPTIONS]
Installs provided packages and adds them to Pipfile, or (if no packages are given), installs all packages from Pipfile.lock
pipenv install [OPTIONS] [PACKAGES]...
Environment Variables
PIP_INDEX_URL
Provide a default for -i
Generates Pipfile.lock.
pipenv lock [OPTIONS]
View a given module in your editor.
This uses the EDITOR environment variable. You can temporarily override it, for example:
EDITOR=atom pipenv open requests
pipenv open [OPTIONS] MODULE
Generate a requirements.txt from Pipfile.lock.
pipenv requirements [OPTIONS]
Spawns a command installed into the virtualenv.
pipenv run [OPTIONS] COMMAND [ARGS]...
Lists scripts in current environment config.
pipenv scripts [OPTIONS]
Spawns a shell within the virtualenv.
pipenv shell [OPTIONS] [SHELL_ARGS]...
Installs all packages specified in Pipfile.lock.
pipenv sync [OPTIONS]
Un-installs a provided package and removes it from Pipfile.
pipenv uninstall [OPTIONS] [PACKAGES]...
Runs lock when no packages are specified, or upgrade, and then sync.
pipenv update [OPTIONS] [PACKAGES]...
Environment Variables
PIP_INDEX_URL
Provide a default for -i
Resolves provided packages and adds them to Pipfile, or (if no packages are given), merges results to Pipfile.lock
pipenv upgrade [OPTIONS] [PACKAGES]...
Environment Variables
PIP_INDEX_URL
Provide a default for -i
Verify the hash in Pipfile.lock is up-to-date.
pipenv verify [OPTIONS]