β All terms Β· Tooling
pip
Python's package manager. `pip install requests` fetches from PyPI.
Learn this interactively:
Open lesson lesson-151 βRelated β Tooling
virtualenv / venvPer-project Python environment. Isolates dependencies so two projects can use diβ¦requirements.txtPlain text list of dependencies, optionally pinned: `requests==2.31.0`. `pip insβ¦pyproject.tomlModern Python project config. Replaces setup.py + setup.cfg + (eventually) requiβ¦BlackOpinionated Python formatter. Stops bike-shedding about style β one command, oneβ¦ruffFast Rust-based Python linter. Replaces flake8 + isort + several plugins, ~100Γ β¦mypyStatic type checker for Python. Catches type errors before runtime. Works best wβ¦