Skip to content

Instantly share code, notes, and snippets.

@ashutoshkrris
Last active August 31, 2024 21:06
Show Gist options
  • Save ashutoshkrris/755ce21182cc79edb0c995b82232ed1f to your computer and use it in GitHub Desktop.
Save ashutoshkrris/755ce21182cc79edb0c995b82232ed1f to your computer and use it in GitHub Desktop.
Pipenv Cheat Sheet

Pipenv Cheat Sheet

Install pipenv

pip install pipenv

Activate pipenv

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

Ignore pipfile

pipenv install --ignore-pipfile

Set lockfile - before deployment

pipenv lock

Exiting the virtualenv

exit

Run with pipenv

pipenv run *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment