LlamaPublisher Installation Guide

Prerequisites

Before installing LlamaPublisher, ensure you have:

Installation via pip

The simplest way to install LlamaPublisher is using pip:

pip install llamapublisher

Installation from source

To install the latest development version from GitHub:

git clone https://github.com/llamasearchai/llamapublisher.git
cd llamapublisher
pip install -e .

Verifying Installation

To verify that LlamaPublisher was installed correctly, run the following in a Python interpreter:

import llamapublisher
print(llamapublisher.__version__)

Optional Dependencies

For additional features, you can install optional dependencies:

pip install llamapublisher[extra]

Next Steps

Now that you have LlamaPublisher installed, check out the Usage Guide to get started.