Last modified: Mar 31, 2025 By Alexander Williams

How to Install TQDM in Python Step by Step

TQDM is a popular Python library for adding progress bars to loops. It makes tracking progress simple and visually appealing. This guide will show you how to install it.

What Is TQDM?

TQDM stands for "taqaddum" (progress in Arabic). It provides a fast, extensible progress bar for loops. It works in consoles and Jupyter notebooks.

It's widely used in data processing, machine learning, and file operations. The progress bar updates in real-time, giving feedback on loop execution.

Prerequisites

Before installing TQDM, ensure you have:

  • Python 3.6 or higher
  • Pip (Python package installer)
  • Basic knowledge of Python

If you encounter a ModuleNotFoundError, check our guide on how to solve ModuleNotFoundError.

Step 1: Check Python Installation

First, verify Python is installed. Open your terminal or command prompt and run:


python --version

You should see the Python version. If not, install Python first.

Step 2: Install TQDM Using Pip

The easiest way to install TQDM is with pip. Run this command:


pip install tqdm

This downloads and installs the latest version. Wait for the installation to complete.

Step 3: Verify Installation

To confirm TQDM installed correctly, run:


python -c "import tqdm; print(tqdm.__version__)"

This should print the installed version. If you get an error, retry the installation.

Step 4: Basic Usage Example

Here's a simple example to test TQDM:


from tqdm import tqdm
import time

for i in tqdm(range(100)):
    time.sleep(0.1)  # Simulate work

This creates a progress bar for a loop. The bar updates as the loop progresses.

Step 5: Advanced Usage

TQDM offers many customization options. Here's an example with a description and unit:


from tqdm import tqdm

items = range(500)
for item in tqdm(items, desc="Processing", unit="item"):
    # Your code here
    pass

The desc parameter adds a description. The unit parameter sets the unit name.

Common Issues and Solutions

If TQDM doesn't work, try these fixes:

  • Upgrade pip: python -m pip install --upgrade pip
  • Reinstall TQDM: pip uninstall tqdm then pip install tqdm
  • Check Python environment

For more help with import errors, see our ModuleNotFoundError guide.

Conclusion

Installing TQDM in Python is simple with pip. It adds helpful progress bars to your scripts. The library works in many environments and is highly customizable.

Now you can track loop progress visually. This improves user experience in long-running processes. Try TQDM in your next Python project!