pip-autoremove

0.10.0 · active · verified Thu Apr 16

pip-autoremove is a command-line utility that extends pip's functionality to automatically remove a specified package along with any of its dependencies that are no longer required by other installed packages. It helps keep your Python environments clean and lean. The current version is 0.10.0, and it appears to be actively maintained with recent updates.

Common errors

Warnings

Install

Imports

Quickstart

Install the utility, then use `pip autoremove` followed by the package name(s) you wish to remove. It will prompt for confirmation before removing unused dependencies.

pip install pip-autoremove
pip autoremove <package_name_to_remove>

view raw JSON →