PIP stands for “Pip Installs Packages”.
It is the official package manager for Python, used to install and manage external libraries that are not included with the standard Python distribution.
Open your terminal or command prompt and type :
pip --version
pip install package_name
pip install requests
pip uninstall package_name
pip uninstall numpy
pip list
pip install --upgrade package_name
pip install --upgrade pandas
To install all packages listed in a requirements.txt file :
pip install -r requirements.txt
numpy==1.24.3 pandas>=1.3.0 requests
pip install flask
pip uninstall flask
pip install --upgrade flask