-
Hi! It seems like my llama.cpp can't use libcurl in my system. When I try to pull a model from HF, I get the following: I'm on Ubuntu, and have the following modules installed:
(abridged) Is this the curl used in Any ideas? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Can you double check that the llama.cpp version that you build used the If using cmake this would look something like this: $ cmake -S . -B build -DLLAMA_CURL=ON Or if using make: $ make LLAMA_CURL=1 Also, if I remember correctly you might need the $ sudo apt install libcurl4-openssl-dev |
Beta Was this translation helpful? Give feedback.
Can you double check that the llama.cpp version that you build used the
LLAMA_CURL
flag?If using cmake this would look something like this:
$ cmake -S . -B build -DLLAMA_CURL=ON
Or if using make:
$ make LLAMA_CURL=1
Also, if I remember correctly you might need the
libcurl4-openssl-dev
package as well.$ sudo apt install libcurl4-openssl-dev