]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
docs: Add instructions to install `llama.cpp` from conda-forge (#22219)
authorJulien Jerphanion <redacted>
Mon, 15 Jun 2026 15:12:25 +0000 (17:12 +0200)
committerGitHub <redacted>
Mon, 15 Jun 2026 15:12:25 +0000 (17:12 +0200)
* docs: Add instructions to install `llama.cpp` from conda-forge

Signed-off-by: Julien Jerphanion <redacted>
* Rewording of instructions

Co-authored-by: Georgi Gerganov <redacted>
---------

Signed-off-by: Julien Jerphanion <redacted>
Co-authored-by: Georgi Gerganov <redacted>
README.md
docs/install.md

index 41c904f39da080c6062131c271e8913596a454bb..0652d13f2960a97e587525fd66ad37f44cfd25bf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -37,7 +37,7 @@ LLM inference in C/C++
 
 Getting started with llama.cpp is straightforward. Here are several ways to install it on your machine:
 
-- Install `llama.cpp` using [brew, nix or winget](docs/install.md)
+- Install `llama.cpp` using [brew, nix, winget, or conda-forge](docs/install.md)
 - Run with Docker - see our [Docker documentation](docs/docker.md)
 - Download pre-built binaries from the [releases page](https://github.com/ggml-org/llama.cpp/releases)
 - Build from source by cloning this repository - check out [our build guide](docs/build.md)
index 7200bf9b7b91d258f3fcb5b33d919032a41e9150..7198e61bf35bdeaedeb0095bac8eb66f3bed62f3 100644 (file)
@@ -1,12 +1,40 @@
 # Install pre-built version of llama.cpp
 
-| Install via | Windows | Mac | Linux |
-|-------------|---------|-----|-------|
+| Install via | Windows | Mac  | Linux |
+|-------------|---------|------|-------|
+| conda-forge | ✅      | ✅   | ✅   |
 | Winget      | ✅      |      |      |
 | Homebrew    |         | ✅   | ✅   |
 | MacPorts    |         | ✅   |      |
 | Nix         |         | ✅   | ✅   |
 
+## conda-forge (Windows, Mac and Linux)
+
+conda-forge provides builds for:
+ - CUDA (Windows and Linux)
+ - Vulkan (Windows and Linux)
+ - Apple Metal (macOS)
+
+```sh
+conda install -c conda-forge llama-cpp
+```
+
+```sh
+mamba install -c conda-forge llama-cpp
+```
+
+```sh
+# Project-local installation
+pixi add llama-cpp
+
+# Global installation
+pixi global install llama-cpp
+```
+
+This distribution is managed on [`conda-forge/llama-cpp-feedstock`](https://github.com/conda-forge/llama.cpp-feedstock/).
+
+Shall you have any problems, please open an issue on [its issue tracker](https://github.com/conda-forge/llama.cpp-feedstock/issues).
+
 ## Winget (Windows)
 
 ```sh