skillfed

pipmaster

A versatile Python package manager utility for simplifying package installation, updates, checks, and environment management.

pipmaster v1.1.13 275.3K downloads/30d#8,179 on PyPI7
Permissive license Apache-2.0 Active released

What it is and what it does

pipmaster is a Python package management toolkit that lets your application ensure its own dependencies are installed and correct at runtime, rather than requiring users to run pip manually. It wraps pip and uv backends behind a unified interface, offering both synchronous and asynchronous APIs for checking, installing, and updating packages. The core concept is idempotent ensure_* methods that check whether packages match your declared state and only act when needed—solving the "it works on my machine" problem by making applications self-sufficient.

Typical use cases include desktop GUI apps that verify UI libraries on first run, CLI tools that auto-install plugins, data science projects keeping notebooks and containers in sync, and CI/CD pipelines preparing clean build environments. It supports version specifiers, custom package indexes, requirements.txt files, Git VCS installs, dry-run mode, and progress callbacks for building UI feedback. The package targets Python 3.8+ and is actively maintained.

Use it for:

  • Desktop GUI applications that verify required UI libraries (e.g., PyQt, tkinter) are present on first launch
  • CLI tools that auto-install optional plugins or dependencies, making the tool instantly usable without manual setup
  • Data science notebooks and ML projects keeping exact dependencies synchronized across local, server, and container environments
  • CI/CD pipelines programmatically preparing clean build environments without shell scripts
  • Distributed applications or portable Python builds managing dependencies across multiple virtual environments

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Programmatically ensures Python packages are installed and at correct versions, with both sync and async APIs, supporting pip and uv backends for declarative dependency management.

Yes. Low install friction, active maintenance, no known vulnerabilities, and Apache-2.0 licensing make it safe to adopt. Install if you need to automate dependency management from Python code or want applications that self-heal missing packages—particularly valuable for desktop apps, CLI tools, and CI/CD automation. Skip if you only need static requirements.txt management or have no programmatic dependency needs.

Install

pipmaster on PyPI

pip

pip install pipmaster

uv

uv add pipmaster

poetry

poetry add pipmaster

Installing pipmaster

Before you install

Low friction: pure Python wheel with only two runtime dependencies (packaging and ascii_colors). Active maintenance with last commit 2026-06-03 and recent release 2026-05-21.

License in practice

Apache-2.0 permissive license allows commercial and private use with minimal restrictions.

Quickstart

pip install pipmaster

import pipmaster as pm

# Ensure packages are installed
pm.ensure_packages(["requests", "numpy>=1.20"], verbose=True)

# Or from requirements.txt
pm.ensure_requirements("requirements.txt")

Verify before relying

  • Whether progress_callback works reliably with both sync and async contexts in production
  • Performance characteristics when managing large dependency graphs (100+ packages)
  • Stability of uv backend support beyond experimental status

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies 2 — packaging, ascii_colors
Maintenance actively maintained — 85 days since the last release
Last repo commit
First released
Downloads 275,320/month — #8,179 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pipmaster-1.1.13-py3-none-any.whl

Keywords: pip, package manager, installer, dependency, venv, environment

Development Status :: 4 - BetaIntended Audience :: DevelopersOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Software Development :: Build ToolsTopic :: System :: Software DistributionTyping :: Typed

Tags

programmatic package installationensure dependencies installedpip automationdeclarative package managementself-healing application dependenciesasync package managerrequirements.txt automation
dependency-automationasync-supportself-healing

More Build Tools packages