The pip tool can do more than just installing packages. It can also give us the following:
- A list of currently installed packages using the -m pip list command:
- Upgrade currently installed packages to the newest version using the -m pip install --upgrade command:
- Uninstall packages that we don't need anymore using the -m pip uninstall command. For example, if we want to uninstall the banknumber package, we can do it by using the following command, shown in this screenshot:
In short, it's a complete cross-platform ...