-
Hi everyone, Sorry for the noob question in advance. Basically I have a llama 3.2 model from HF that I'm trying to convert to GGUF but I get the below error:
The command I'm running to convert my model is below:
Anyone has any clue what could cause the error? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the issue. In case any other new ppl go through the same: I had downloaded the llama.cpp zip for ubuntu from the release page + downloaded the convert_hf_to_gguf.py separately. Looks like the zip doesn't include the dependencies for convert_hf_to_gguf.py. So I went through cloning the repo and using cmake to install llama.cpp fully and it fixed the issue. |
Beta Was this translation helpful? Give feedback.
I found the issue. In case any other new ppl go through the same:
I had downloaded the llama.cpp zip for ubuntu from the release page + downloaded the convert_hf_to_gguf.py separately.
Looks like the zip doesn't include the dependencies for convert_hf_to_gguf.py.
So I went through cloning the repo and using cmake to install llama.cpp fully and it fixed the issue.