Installation¶
Requirements¶
- Python 3.8+ - Required
- pip - Package manager
- Git - For version control (optional)
Quick Install¶
From PyPI (Recommended)¶
Verify Installation¶
Install from Source¶
For development or latest features:
# Clone repository
git clone https://github.com/ChAbdulWahhab/projex.git
cd projex
# Install in editable mode
pip install -e .
Upgrade Projex¶
Uninstall¶
Platform-Specific Notes¶
Windows¶
Linux/Mac¶
Virtual Environment (Recommended)¶
# Create virtual environment
python -m venv venv
# Activate
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows
# Install
pip install projex
Dependencies¶
Projex automatically installs:
click- CLI frameworkrich- Beautiful terminal outputjinja2- Template enginerequests- HTTP library
Troubleshooting¶
Command not found¶
# Add Python Scripts to PATH
# Windows: Add C:\Python3X\Scripts to PATH
# Linux/Mac: Add ~/.local/bin to PATH