PIP stands for Package Installer for Python.
PIP is a package manager for Python packages, or modules.
What is a Package ?
A package contains all the files you need for a module.
Modules are Python code libraries you can include in your project.
Check PIP Version :
Python
pip --version Install a Package using PIP :
Python
pip install package_name #example pip install numpyInstall Specific Version :
Python
pip install package_name==2.5.0Upgrade a Package :
Python
pip install --upgrade package_nameUninstall a Package :
Python
pip uninstall package_nameShow Installed Version of a Package :
Python
pip show package_nameList All Packages :
Python
pip list Install packages from requirements.txt file :
Python
pip install -r requirements.txt