From 4330598fb0bed29c3cbabda09a7b0fc5e8643f93 Mon Sep 17 00:00:00 2001 From: SB Date: Mon, 6 Mar 2023 12:56:10 -0500 Subject: [PATCH] added wget requirements bash won't suffice since script does rely on 'wget', more clean way implemented for users to run on mac. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 04ae3d5..531c28d 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,7 @@ curl -o- https://raw.githubusercontent.com/shawwn/llama-dl/56f50b96072f42fb2520b Mac: ```sh -brew install bash -curl -o- https://raw.githubusercontent.com/shawwn/llama-dl/56f50b96072f42fb2520b1ad5a1d6ef30351f23c/llama.sh | $(brew --prefix)/bin/bash +brew install bash && brew install wget && curl -o- https://raw.githubusercontent.com/shawwn/llama-dl/56f50b96072f42fb2520b1ad5a1d6ef30351f23c/llama.sh | $(brew --prefix)/bin/bash ``` (Sorry mac users; they use some array syntax in the script that isn't supported on the version of bash that ships with Mac.)