Mudyla can be installed in several ways depending on your platform and requirements.
pipx installs Mudyla in an isolated environment, keeping your system Python packages clean.
pipx install mudyla
mdl --helpYou can install directly into your current Python environment (virtualenv recommended).
pip install mudyla
mdl --helpIf you are a Nix user, Mudyla has first-class support.
nix run github:7mind/mudyla -- --helpnix profile install github:7mind/mudylaTo get a shell with mdl available (and uv for development):
nix develop github:7mind/mudylagit clone https://github.com/7mind/mudyla
cd mudyla
# Install using uv (recommended for dev)
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
uv pip install -e .
# Or using pip
pip install -e .