Before installing LlamaForge, ensure you have:
The simplest way to install LlamaForge is using pip:
pip install llamaforge
To install the latest development version from GitHub:
git clone https://github.com/llamasearchai/llamaforge.git
cd llamaforge
pip install -e .
To verify that LlamaForge was installed correctly, run the following in a Python interpreter:
import llamaforge
print(llamaforge.__version__)
For additional features, you can install optional dependencies:
pip install llamaforge[extra]
Now that you have LlamaForge installed, check out the Usage Guide to get started.