How to Install PIP Packages
Introduction
PIP is Python’s official package manager. It allows you to install libraries, tools, and frameworks that expand what Python can do. Whether you're building websites, games, bots, or data projects, PIP gives you access to thousands of powerful packages.
Step 1: Check if PIP is Installed
Open your terminal and type:
pip --version
If PIP is installed, you will see version information. If not, make sure Python was installed with the “Add to PATH” option.
Step 2: Install a PIP Package
To install any package, use the following command:
pip install package_name
For example, to install the popular requests library:
pip install requests
This downloads and installs the package automatically.
Step 3: Install Multiple Packages
You can install several packages at once:
pip install flask numpy pillow
PIP will install each one in order.
Step 4: Upgrade a Package
To upgrade a package to the latest version:
pip install --upgrade package_name
Example:
pip install --upgrade requests
Step 5: Uninstall a Package
If you no longer need a package:
pip uninstall package_name
Example:
pip uninstall flask
Step 6: View Installed Packages
To see all packages installed on your system:
pip list
Step 7: Search for Packages
You can search for packages online at:
PyPI (Python Package Index) is the official library repository.
Troubleshooting
- If
pipisn’t recognised, trypip3. - Restart your computer after installing Python.
- Make sure Python was added to PATH.
- On macOS/Linux, use
python3 -m pip install package_name.
Conclusion
PIP is one of the most important tools for Python developers. With it, you can install powerful libraries that help you build websites, games, bots, automation tools, and much more.
You now know how to install, upgrade, remove, and manage Python packages using PIP.