Installation¶
It is easiest to use LLaMEA from the PyPI package:
pip install llamea
Important
The Python version must be >= 3.11. An OpenAI/Gemini/Ollama API key is needed for using LLM models.
You can also install the package from source using uv (0.7.19). make sure you have uv installed.
Clone the repository:
git clone https://github.com/xai-liacs/LLaMEA.git cd LLaMEA
Install the required dependencies via uv:
uv sync
Optionally install dev or/and example dependencies: .. code-block:: bash
uv sync –dev –group examples