🏡Pipenv
Pipenv cheat sheet
Pipenv Cheat Sheet
Install pipenv
pip3 install pipenvActivate
pipenv shellCheck the version of Python
python --versionCheck 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?