Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
nopperl
/
emission-extractor
like
0
Sleeping
App
Files
Files
Community
176b16b
emission-extractor
/
install-llamacpp.sh
nopperl
implement inference using llama.cpp
176b16b
9 months ago
raw
Copy download link
history
blame
Safe
142 Bytes
#!/bin/sh
if
[ ! -f llama.cpp/build/bin/main ];
then
cd
llama.cpp
mkdir
build
cd
build
cmake ..
cmake --build . --config Release
fi