🏡Pipenv

Pipenv cheat sheet

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell

Check the version of Python

python --version

Check path

python
>>> import sys
>>> sys.executable
quit()

Install a package

pipenv install <package_name>

Check local packages

Uninstall a package

Install a dev package

Install from requirements.txt

Check security vulnerabilities

Check dependency graph

Ignore pipfile

Set lockfile - before deployment

Exiting the virtualenv

Run with pipenv

Last updated

Was this helpful?