Pipenv Cheat Sheet Install pipenv pip3 install pipenv Activate pipenv shell Check version of Python python --version Check path python >>> import sys >>> sys.executable quit() Install a package pipenv install camelcase Check local packages pipenv lock -r Uninstall a package pipenv uninstall camelcase Install a dev package pipenv install nose --dev Install from requirements.txt pipenv install -r ./requirements.txt Check security vulnerabilities pipenv check Check dependency graph pipenv graph Check pipenv check Update pipenv update --outdated pipenv update Install in Prod (fail if pipfile out of sync with lock) pipenv install --deploy Ignore pipfile pipenv install --ignore-pipfile Set lockfile - before deployment pipenv lock Exiting the virtualenv exit Run with pipenv pipenv run *