From: Pouya Date: Thu, 24 Jul 2025 09:26:44 +0000 (+0300) Subject: docs: add libcurl-dev install hint for Linux distros (#14801) X-Git-Tag: upstream/0.0.6073~96 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=39cffdf18855e0d2beba62572542251d87421e73;p=pkg%2Fggml%2Fsources%2Fllama.cpp docs: add libcurl-dev install hint for Linux distros (#14801) * docs: add libcurl-dev install hint for Linux distros Signed-off-by: PouyaGhahramanian * Update docs/build.md --------- Signed-off-by: PouyaGhahramanian Co-authored-by: Xuan-Son Nguyen --- diff --git a/docs/build.md b/docs/build.md index 849c8252..dd486fe2 100644 --- a/docs/build.md +++ b/docs/build.md @@ -68,6 +68,9 @@ cmake --build build --config Release cmake --build build-x64-windows-llvm-release ``` - Curl usage is enabled by default and can be turned off with `-DLLAMA_CURL=OFF`. Otherwise you need to install development libraries for libcurl. + - **Debian / Ubuntu:** `sudo apt-get install libcurl4-openssl-dev` # (or `libcurl4-gnutls-dev` if you prefer GnuTLS) + - **Fedora / RHEL / Rocky / Alma:** `sudo dnf install libcurl-devel` + - **Arch / Manjaro:** `sudo pacman -S curl` # includes libcurl headers ## BLAS Build