Update install.sh

BINDIR add $HOME/.local/bin, so users can install OLLAMA into $HOME/.local/bin as first choice.
This commit is contained in:
Leisure Linux 2025-02-14 22:20:31 +08:00 committed by GitHub
parent 5296f487a8
commit 3cfde396d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ if [ -n "$NEEDS" ]; then
exit 1
fi
for BINDIR in /usr/local/bin /usr/bin /bin; do
for BINDIR in $HOME/.local/bin /usr/local/bin /usr/bin /bin; do
echo $PATH | grep -q $BINDIR && break || continue
done
OLLAMA_INSTALL_DIR=$(dirname ${BINDIR})