Registry / testing / pip-install-test

pip-install-test

JSON →
library0.5pypypi✓ verified 85d ago

pip-install-test is a minimal stub package (current version 0.5) designed to test the success of `pip install` operations. It provides a straightforward mechanism for verifying that a Python environment is capable of installing third-party modules via pip. Its primary purpose is to offer a simple 'existence proof of viability' for pip installations, rather than to provide complex functionality or exercise the full feature set of pip or setuptools. The package was last updated in March 2019 and serves as a utility for validating basic Python package management setups.

pip install pip-install-test
INSTALL
IMPORT
SIG · PIP-INSTALL-TEST
P
pip-install-test
testingpythonv0.5
Install
1.5s avg
Import
Disk
16MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.5 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.920 runs
installs and imports cleanly · install 0.0s · import 0.000s · 17.8MB
glibc
py 3.103.920 runs
installs and imports cleanly · install 1.5s · import 0.000s · 18MB
16MB installed
● package 16MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

pip_install_test
import pip_install_test
The package name on PyPI uses hyphens, but the import name uses underscores as per Python's module naming conventions.

After installation, the package can be imported directly. This minimal example demonstrates a successful import, confirming that `pip install` worked as expected and the package is discoverable by Python.

import pip_install_test print("pip_install_test imported successfully!")
Debug
Known issues
gotchaThe package name on PyPI (`pip-install-test`) differs from its import name in Python (`pip_install_test`). This is a common Python packaging convention but can be a source of 'ModuleNotFoundError' if not followed.
fix
Always use `import pip_install_test` in your Python code, not `import pip-install-test`.
affects: All versions
gotchaThis package is a diagnostic tool. If its installation fails, the issue is likely with your pip setup (e.g., network, permissions, outdated pip, or virtual environment activation) rather than a bug within `pip-install-test` itself.
fix
Troubleshoot common pip issues: check internet connectivity, ensure proper virtual environment activation, upgrade pip (`python -m pip install --upgrade pip`), or address permission errors.
affects: All versions
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'pip-install-test'
Incorrect package name used in the import statement.
fix
The Python module name uses underscores, not hyphens. Use `import pip_install_test`.
ERROR: Could not find a version that satisfies the requirement pip-install-test (from versions: none)
pip cannot reach PyPI, or the package name is misspelled, or a proxy/firewall is blocking access.
fix
Verify internet connection, check for typos in the package name (`pip install pip-install-test`), ensure proxy settings are configured if behind one, or try upgrading pip (`python -m pip install --upgrade pip`).
ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied
pip is attempting to install packages globally without sufficient permissions, or a virtual environment is not activated.
fix
Activate a virtual environment (`source .venv/bin/activate` or `.venv\Scripts\activate`) or use `pip install --user pip-install-test` to install into the user scheme. Avoid `sudo pip install` unless absolutely necessary and understood.
Upgrade
Version history
0.5latest on PyPI · released Mar 28, 2019
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
12
Resources
pip-install-test — pip install pip-install-test · libregistry