pip Verified current stable Not installed? Package Management

Pip / List Outdated Packages

List Outdated Packages

Use 'pip list --outdated' to view all outdated Python packages in your environment.

$
Terminal
pip list -o

When To Use

Check for outdated Python packages in your development environment.

Command Builder

Tune the command before you copy it

Back to syntax
$
Generated Command
pip list -o

Terminal Output

Expected runtime feedback

Simulated preview
>
Output
Package    Version   Latest   Type
---------- --------- -------- -------
requests   2.25.1   2.26.0  wheel
numpy      1.19.5   1.21.0  wheel

Command Breakdown

What each part is doing

pip
Base Command
The executable that performs this operation. Here it runs Pip before the shell applies any redirect operators.
-o
o| outdated
The value supplied for o| outdated.
-o
Command Option
Tool-specific option used by this command invocation.

How To Run

Execution path

  1. Step 1

    Open your terminal or command prompt.

  2. Step 2

    Run the command: pip list --outdated.

  3. Step 3

    Review the list of outdated packages displayed.

Alternative Approaches

Comparable commands in other tools

Alternative package management tools for the same job.