forked from React-Group/interstellar_ai
7 lines
No EOL
152 B
Bash
7 lines
No EOL
152 B
Bash
#!/bin/bash
|
|
|
|
apt install npm nodejs python3-full -y
|
|
if ! ollama; then
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
fi
|
|
systemctl enable ollama --now |