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.
This commit is contained in:
JackJollimore 2023-08-27 16:28:28 -03:00 committed by GitHub
parent 83df548b86
commit ee55b1e528
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -803,7 +803,6 @@ git clone https://github.com/ggerganov/llama.cpp
Build `llama.cpp`: Build `llama.cpp`:
``` ```
$HOME
cd llama.cpp cd llama.cpp
make make
``` ```
@ -820,6 +819,7 @@ cmake --build . --config Release
Move your model to the $HOME directory in Termux, for example: Move your model to the $HOME directory in Termux, for example:
``` ```
$HOME
cd storage/downloads cd storage/downloads
mv 7b-model.gguf ~/ mv 7b-model.gguf ~/
``` ```