Member-only story

Mastering Package Management with pip in Python

Elshad Karimov
2 min readAug 12, 2024
Photo by Ilya Pavlov on Unsplash

Managing dependencies is a crucial part of any Python project, and that’s where pip, Python’s package installer, comes into play. Whether you're working on a small script or a large-scale application, pip makes it easy to install, update, and manage the libraries your project depends on. Here's a quick guide to using pip effectively.

1. Installing Packages

To install a Python package, all you need is a simple command. pip will fetch the package from the Python Package Index (PyPI) and install it for you.

  • Example: Installing the requests library.
pip install requests

You can specify the version of the package if needed:

pip install requests==2.25.1

2. Upgrading Packages

Keeping your packages up-to-date is essential for security and functionality. pip allows you to upgrade packages to their latest versions.

  • Example: Upgrading the requests library to the latest version.
pip install --upgrade requests

3. Listing Installed Packages

If you need to see what packages are currently installed in your environment, pip provides a simple way to list…

--

--

Elshad Karimov
Elshad Karimov

Written by Elshad Karimov

Software Engineer, Udemy Instructor and Book Author, Founder at AppMillers

No responses yet