ramalama-workshop

Ramalama Workshop

Table of Contents

Installation

Universal Install Script (Linux and macOS)

The easiest way to install RamaLama is using the universal install script:

curl -fsSL https://ramalama.ai/install.sh | bash

Fedora

On Fedora systems, you can install RamaLama directly from the official repositories:

sudo dnf install ramalama

PyPI (All Platforms)

RamaLama is available on PyPI and can be installed using pip:

pip install ramalama

Verify Installation

After installation, verify that RamaLama is working correctly:

ramalama version

Running your first model

Pull your first model:

ramalama pull smollm:135m

Run a model:

ramalama run smollm:135m

Explore available commands:

ramalama --help

Other models you can download and run

ramalama info --shortnames
ramalama inspect smollm:135m

Agents with Ramalama

ramalama sandbox opencode --thinking=off smollm:135m
ramalama sandbox goose --thinking=off smollm:135m

Stop Ramalama

ramalama stop --all

Next Steps