Command
pip installExplanation
pip is the standard package manager for Python used to install and manage packages from PyPI.
Examples
Install package
pip install requestsInstall from requirements file
pip install -r requirements.txtUpgrade package
pip install --upgrade package_name