Installation
Airulefy can be installed in various ways. Choose the method that fits your environment and preferences.
Prerequisites
- Python 3.11 or higher
- pip or Poetry (recommended)
Installation with Poetry (Recommended)
Poetry is a modern Python package manager that makes dependency management and environment isolation easier.
# If you don't have Poetry installed yet
curl -sSL https://install.python-poetry.org | python3 -
# Install Airulefy
poetry add airulefy
To install as a development dependency for an existing project:
poetry add --dev airulefy
Installation with pip
Install using the standard Python package manager:
pip install airulefy
To install a specific version:
pip install airulefy==0.1.0
DevContainer Setup
If you're using VS Code's DevContainer, you can easily set up the environment:
- Add the following to your
.devcontainer/devcontainer.json
file:
{
"name": "Python Development",
"image": "mcr.microsoft.com/devcontainers/python:3.11",
"postCreateCommand": "pip install airulefy",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
]
}
}
}
- Restart your DevContainer, and Airulefy will be automatically installed.
Using with GitHub Codespaces
When using GitHub Codespaces:
- Include the DevContainer configuration in your repository (see above)
- When you launch Codespaces, Airulefy will be automatically installed
- Alternatively, you can install directly in the Codespaces terminal:
pip install airulefy