Tool to mark packages as installed for pip without actually installing them.
Project description
pip-mark-installed
A utility tool to mark packages as installed for pip or uv without actually installing them.
Description
pip-mark-installed creates the necessary metadata files to make pip believe that a package is installed, without actually installing any of the package code. This is particularly useful for resolving conflicts between different package variants that share the same namespace (e.g. GPU vs CPU, GUI vs headless variants) or when you want to prevent pip from installing certain packages that you have already managed through other means.
Installation
Grab the pip-mark-installed.py script or install it via pip:
pip install pip-mark-installed
Usage
pip-mark-installed PACKAGE_SPEC [PACKAGE_SPEC ...]
Where PACKAGE_SPEC can be either:
PACKAGE_NAME(uses a default version of 9999.99.99)PACKAGE_NAME==VERSION
Examples
Mark a package as installed:
pip-mark-installed opencv-python
Mark multiple packages with specific versions:
pip-mark-installed opencv-python==4.5.1 opencv-contrib-python==4.5.1
Specify a custom site-packages directory:
pip-mark-installed --site-packages /path/to/site-packages some-package
Common Use Cases
This tool helps address situations where pip's dependency resolution doesn't behave as desired:
-
Conflicting Package Variants: When multiple packages offer the same functionality but under identical import names, conflicts can arise. A common example is the various OpenCV packages (e.g.,
opencv-python,opencv-contrib-python,opencv-python-headless). These all install to thecv2namespace. You might want theopencv-contrib-pythonversion, butpipmight try to installopencv-pythondue to a dependency in another package.pip-mark-installedallows you to install your preferred version and then "trick"pipinto thinking the others are already present, preventing unwanted installations.# Install the variant you actually want: pip install opencv-contrib-python # Mark conflicting variants as "installed" to prevent pip from installing them: pip-mark-installed opencv-python opencv-python-headless opencv-python-headless
-
Optional or broken dependencies: Sometimes, a package might list an optional dependency that you don't want installed, or a dependency known to cause issues in your specific environment. For instance, a package might list PyQt5 as a dependency, but you want to use PySide6. If these are not strictly necessary, or if you've already managed them outside of pip, you can use
pip-mark-installedto satisfy the dependency check without actually installing the packages.# Mark PyQt5 as installed, to prevent a dependency from installing them. pip-mark-installed PyQt5
-
System-level installations: When a package exists at system level but you want to prevent pip from installing conflicting versions in your environment.
How It Works
The script creates the necessary .dist-info directory structure and metadata files that pip uses to determine if a package is installed.
Links
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pip_mark_installed-1.0.0.tar.gz.
File metadata
- Download URL: pip_mark_installed-1.0.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43c9e023fd906944a7f7b00e2de0b53a4d02cb46aa84b62180d05c5fa7469c5c
|
|
| MD5 |
eec2c7ff2ac1d4ac6de8f1fb04f1d786
|
|
| BLAKE2b-256 |
feb434102d229a0d0f73585b8acfd0f90c63a7c0a86b3a9059535c1331950e6b
|
File details
Details for the file pip_mark_installed-1.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: pip_mark_installed-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d56466d48c64085750f4b402affe1619accff2042224feb61f918fefb27808c6
|
|
| MD5 |
bbed53922cd0f19404b05a2446d5b29d
|
|
| BLAKE2b-256 |
30186870faa11452da3709595351daf30af985a99073e31acf6e2db00e3e239e
|