40  PIP (Package installer for python)

PIP is the package installer for python. It is the default and most used tool for installing other packages.

Normally, you install packages from Python Package Index. You can search for packages in its own web site. As of 2022-11, python package index had more than 400_000 projects.

But you can also install from

Also you can install multiple packages using requirements.txt files

python -m pip install -r requirements.txt

with pip list, you can see which packages are installed in your computer.

python -m pip list

If you want, you can uninstall any package

python -m pip uninstall projectfiles