From ee55b1e528aae65eb72b3870211db1bc15a1f904 Mon Sep 17 00:00:00 2001 From: JackJollimore <130917767+JackJollimore@users.noreply.github.com> Date: Sun, 27 Aug 2023 16:28:28 -0300 Subject: [PATCH] dummy-proof directions $HOME before make is unneccesary. If User is new with Termux then typing cd storage/downloads before $HOME is confusing. clarified directions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95574df09..6b4b9bb99 100644 --- a/README.md +++ b/README.md @@ -803,7 +803,6 @@ git clone https://github.com/ggerganov/llama.cpp Build `llama.cpp`: ``` -$HOME cd llama.cpp make ``` @@ -820,6 +819,7 @@ cmake --build . --config Release Move your model to the $HOME directory in Termux, for example: ``` +$HOME cd storage/downloads mv 7b-model.gguf ~/ ```