Skip to content

Commit

Permalink
Merge pull request #493 from jtligon/fix-mac-install
Browse files Browse the repository at this point in the history
Update install.sh
  • Loading branch information
rhatdan authored Nov 26, 2024
2 parents 97603be + 716da49 commit 93c5291
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ check_platform() {
echo "directory containing brew to the PATH before continuing to install RamaLama"
return 2
fi

if ! available "pipx"; then
echo "Ramalama requires pipx to install. run 'brew install pipx' to install ramalama"
return 3
fi
elif [ "$os" = "Linux" ]; then
if [ "$EUID" -ne 0 ]; then
echo "This script is intended to run as root on Linux"
Expand Down

0 comments on commit 93c5291

Please sign in to comment.