corrected navigation

$HOME is a script within fish shell, assuming User uses bash then we use `cd` to navigate to /data/data/com.termux/files/home
This commit is contained in:
JackJollimore 2023-08-27 16:55:56 -03:00 committed by GitHub
parent ee55b1e528
commit e69b7b5a38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -797,7 +797,7 @@ https://user-images.githubusercontent.com/271616/225014776-1d567049-ad71-4ef2-b0
Ensure Termux is up to date and clone the repo:
```
apt update && apt upgrade
$HOME
cd
git clone https://github.com/ggerganov/llama.cpp
```
@ -809,7 +809,6 @@ make
It's possible to include OpenBlas while building:
```
$HOME
pkg install libopenblas
cd llama.cpp
cmake -B build -DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS
@ -819,7 +818,7 @@ cmake --build . --config Release
Move your model to the $HOME directory in Termux, for example:
```
$HOME
cd
cd storage/downloads
mv 7b-model.gguf ~/
```