[mdlug] How to install AI Deepseek on Ubuntu 24.04 with script
Gib
gibmaxn at gmail.com
Thu Mar 6 21:03:03 EST 2025
I'm just sending this again to make it easier for folks to find it for our
Saturday meeting.
We talked about what it would take to install AI. I followed these
instructions and got this to work the first time. It took less than an hour
with a 30 minute nap. :)
I started with a virtual machine running Ubuntu 24.04.
I did this first:
apt-get update
https://linuxconfig.org/how-to-install-and-run-deepseek-ai-on-ubuntu-debian-no-gpu
Here are the commands:
sudo apt install curl
curl -fsSL https://ollama.com/install.sh | sh
ollama --version
systemctl is-active ollama.service
ollama pull deepseek-r1:7b
ollama run deepseek-r1:7b
###ollama serve & curl http://localhost:11434/api/generate -d '{"model":
"deepseek-r1:7b", "prompt": "Hello, how are you?"}'
This should work as a script.
Note I did not include the last line, web execution.
Just enter this in a shell:
touch deepseekai.sh
echo "sudo apt install curl" >> deepseekai.sh
echo "curl -fsSL https://ollama.com/install.sh | sh" >> deepseekai.sh
echo "ollama --version" >> deepseekai.sh
echo "systemctl is-active ollama.service" >> deepseekai.sh
echo "ollama pull deepseek-r1:7b" >> deepseekai.sh
echo "ollama run deepseek-r1:7b" >> deepseekai.sh
sh ./deepseekai.sh
More information about the mdlug
mailing list