Installation Guide¶
This guide will help you install RunLy on your system.
Requirements¶
Python 3.8 or higher
pip (Python package installer)
Installation Methods¶
From PyPI (Recommended)¶
pip install runly
From Source¶
Clone the repository:
git clone https://github.com/kedjar/runly.git
cd runly
Install in development mode:
pip install -e .
Using pipx (Isolated Installation)¶
If you want to install RunLy in an isolated environment:
pipx install runly
Verify Installation¶
After installation, verify that RunLy is working correctly:
runly --version
You should see output similar to:
RunLy 0.1.1
Getting Help¶
If you encounter any issues during installation:
Make sure you have Python 3.8 or higher installed
Try upgrading pip:
pip install --upgrade pipCheck the GitHub issues for known problems
Create a new issue if your problem isn’t already reported
Next Steps¶
After installation, you can:
Follow the Quick Start Guide guide to get started
Read the Configuration Guide documentation for advanced usage
Check out the Examples for real-world usage patterns