Installation¶
ProjectLens is designed to be lightweight with zero external dependencies, making installation quick and straightforward.
Prerequisites¶
- Python 3.9 or higher
Installing from PyPI¶
The recommended installation method is via pip:
This will install the latest stable version of ProjectLens from PyPI.
Development Installation¶
If you want to contribute to ProjectLens or use the latest development version, you can install directly from the repository:
I recommend using UV:
Verifying Installation¶
To verify that ProjectLens was installed correctly, run:
You should see the help output displaying available commands and options.
Installation in Virtual Environments¶
It's generally a good practice to install Python packages in a virtual environment. UV installs it for you.
# Create the virtual environment & install projectlens
uv sync
# Activate the environment
# On macOS/Linux:
source .venv/bin/activate
# On Windows:
.venv\Scripts\activate
This package uses only built-in Python functions: 0 dependencies!
Next Steps¶
- Quick Start Guide - Learn how to use ProjectLens
- CLI Usage - Explore command-line options
- Python API - Use ProjectLens in your Python scripts