Create setup.sh
Browse files
setup.sh
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
# Install Ollama CLI (example for Ubuntu Linux, adjust if needed)
|
4 |
+
# Check official Ollama docs for Linux installation steps or your custom setup
|
5 |
+
|
6 |
+
curl -fsSL https://ollama.com/download/linux | bash
|
7 |
+
|
8 |
+
# (Optional) Download or setup your local model, e.g. llama2
|
9 |
+
ollama pull llama2
|