Installation¶
This guide covers different ways to install OAS Patcher on your system.
Prerequisites¶
- Python 3.8 or higher - Check your version with
python --version - pip - Python package installer (usually comes with Python)
Install from PyPI (Recommended)¶
The easiest way to install OAS Patcher is using pip:
Verify Installation¶
After installation, verify it's working:
You should see output similar to:
Install from Source¶
If you want the latest development version or want to contribute:
1. Clone the Repository¶
2. Create Virtual Environment (Recommended)¶
# Create virtual environment
python -m venv .venv
# Activate it
# On Windows:
.venv\Scripts\activate
# On macOS/Linux:
source .venv/bin/activate
3. Install in Development Mode¶
This installs OAS Patcher in "editable" mode, so changes to the source code are immediately available.
4. Install Development Dependencies (Optional)¶
If you plan to contribute or run tests:
Next Steps¶
Now that OAS Patcher is installed:
- 📚 Quick Start Guide - Get up and running in 5 minutes
- 🎯 Your First Overlay - Create your first overlay
- 📖 Core Concepts - Understand the fundamentals