30-SECOND SUMMARY
What to take away
- Choose releases, Docker, or source build—not all three.
- Check the model card and license.
- Make the CLI work before starting a server.
The shortest GGUF path
Make CLI work before the server.
- 01INSTALL
Official package
- 02GGUF
Model and license
- 03CLI
Single prompt
- 04SERVER
Local API
Choose an install path
The official repository provides prebuilt releases, Docker instructions, and source builds. Match CUDA, Metal, Vulkan, or CPU support to the machine.
Select a GGUF
GGUF stores tensors and metadata. Start near Q4 and confirm the chat template, publisher, and license.
Run the CLI
The current quick start can download a Hugging Face model directly.
llama-cli -hf ggml-org/Qwen3.5-0.8B-GGUFStart locally
Use the compatible server on localhost first. External access needs a separate authentication layer.
llama-server -hf ggml-org/Qwen3.5-0.8B-GGUFFrequently asked questions
Is GGUF a model name?
No. It is a file format for tensors and metadata.
Must I compile from source?
No. Official binaries and Docker are alternatives.
Can it run without a GPU?
Yes, but speed depends heavily on model and CPU.
Primary sources
Check the original documentation for version-specific details.