Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre-Requisite package correction and programming. #212

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ In order to download the model weights and tokenizers, please visit the [Meta we

Once your request is approved, you will receive a signed URL over email. Then run the download.sh script, passing the URL provided when prompted to start the download. Make sure that you copy the URL text itself, **do not use the 'Copy link address' option** when you right click the URL. If the copied URL text starts with: https://download.llamameta.net, you copied it correctly. If the copied URL text starts with: https://l.facebook.com, you copied it the wrong way.

Pre-requisites: make sure you have `wget` and `md5sum` installed. Then to run the script: `bash download.sh`.
Pre-requisites: make sure you have `wget` and `md5sha1sum` installed. For Mac you can alternatively run pre.sh assuming homebrew is already installed in your mac.
Then to run the script: `bash download.sh`.

Keep in mind that the links expire after 24 hours and a certain amount of downloads. If you start seeing errors such as `403: Forbidden`, you can always re-request a link.

Expand Down
2 changes: 2 additions & 0 deletions pre-requisite.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
wget
md5sha1sum
1 change: 1 addition & 0 deletions pre.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
while read package; do brew install $package; done < pre-requisite.txt