2024-10-09 11:03:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-10-09 12:01:07 +02:00
|
|
|
apt install npm nodejs python3-pip -y
|
2024-10-09 13:10:03 +02:00
|
|
|
if ! ollama; then
|
|
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
|
|
fi
|
2024-10-09 11:03:43 +02:00
|
|
|
systemctl enable ollama --now
|