File size: 189 Bytes
176b16b
e45a7c9
176b16b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/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