From e69b7b5a38d3041b20ffe46068cb2a765b24ef6a Mon Sep 17 00:00:00 2001 From: JackJollimore <130917767+JackJollimore@users.noreply.github.com> Date: Sun, 27 Aug 2023 16:55:56 -0300 Subject: [PATCH] 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 --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b4b9bb99..b9c578555 100644 --- a/README.md +++ b/README.md @@ -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 ~/ ```