-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# Change to a directory where you want to download and install TinyLLAMA | ||
cd /opt | ||
|
||
# Clone the ollama repository (replace with actual repository URL) | ||
git clone https://github.com/ollama/ollama.git | ||
|
||
# Change into the ollama directory | ||
cd ollama | ||
|
||
# Install necessary dependencies | ||
pip install -r requirements.txt | ||
|
||
# Install TinyLLAMA model (adjust as per actual model installation instructions) | ||
./ollama-linux-amd64 run phi3:mini | ||
./ollama-linux-amd64 run tinyllama | ||
|