Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nopperl
/
emission-extractor
like
0
Sleeping
App
Files
Files
Community
cc7d2be
emission-extractor
/
install-llamacpp.sh
nopperl
clone llama.cpp instead of submodule
e45a7c9
10 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
#!/bin/sh
git
clone
https://github.com/nopperl/llama.cpp
if
[ ! -f llama.cpp/build/bin/main ];
then
cd
llama.cpp
mkdir
build
cd
build
cmake ..
cmake --build . --config Release
fi