PIP is a package management system that is used to install and manage Python-based software packages.
It stands for “preferred installer program” or “Pip Installs Packages.”.
Python has so many packages which can be installed into your directory using the 'pip install' command.
Once a package is installed you can then import it into your program.
If you wish to browse through the list of available packages, click here
The syntax to install a package is:
pip install packagename
The syntax to uninstall is:
pip uninstall packagename
To view all the installed packages:
pip list
« OOP | namespace »