- To uninstall packages, run the pip uninstall <package_name> command. This will uninstall most packages on the system.
- Requirements files can be used to remove a number of packages at once, by using the -r option, such as pip uninstall -r <requirements_file>. The -y option allows for automatic confirmation of file removal.
- List currently installed packages by running pip list.
- To show packages that are outdated, use pip list --outdated, as follows:
$ pip list --outdated
docutils (Current: 0.10 Latest: 0.11)
Sphinx (Current: 1.2.1 Latest: 1.2.2)
While it is possible to update all outdated packages at once, this is not ...