[GH-ISSUE #7539] unable to update to ollama --version 0.4.0 or ollama pull llama3.2-vision or ollama pull llama3.2-vision:90b #4794

Closed
opened 2026-04-12 15:45:52 -05:00 by GiteaMirror · 6 comments
Owner

Originally created by @etherblitzdev on GitHub (Nov 7, 2024).
Original GitHub issue: https://github.com/ollama/ollama/issues/7539

What is the issue?

ubuntu 22.04.5 LTS

ollama --version
ollama version is 0.3.14

https://github.com/ollama/ollama/releases/download/v0.4.0/ollama-linux-amd64.tgz

mkdir ollama-linux-amd64
cd ollama-linux-amd64
tar -xzvf ollama-linux-amd64.tgz
sudo cp ./bin/ollama /usr/local/bin/
sudo mkdir -p /usr/local/lib/ollama
sudo cp -r ./lib/ollama/* /usr/local/lib/ollama/

result

ollama --version
ollama version is 0.3.14
Warning: client version is 0.4.0

ollama pull llama3.2-vision
pulling manifest
Error: pull model manifest: 412:

The model you are attempting to pull requires a newer version of Ollama.

Please download the latest version at:

https://ollama.com/download

ollama pull llama3.2-vision:90b
pulling manifest
Error: pull model manifest: 412:

The model you are attempting to pull requires a newer version of Ollama.

Please download the latest version at:

https://ollama.com/download

OS

Linux

GPU

Nvidia

CPU

AMD

Ollama version

ollama version is 0.3.14 Warning: client version is 0.4.0

Originally created by @etherblitzdev on GitHub (Nov 7, 2024). Original GitHub issue: https://github.com/ollama/ollama/issues/7539 ### What is the issue? ubuntu 22.04.5 LTS ollama --version ollama version is 0.3.14 https://github.com/ollama/ollama/releases/download/v0.4.0/ollama-linux-amd64.tgz mkdir ollama-linux-amd64 cd ollama-linux-amd64 tar -xzvf ollama-linux-amd64.tgz sudo cp ./bin/ollama /usr/local/bin/ sudo mkdir -p /usr/local/lib/ollama sudo cp -r ./lib/ollama/* /usr/local/lib/ollama/ # result ollama --version ollama version is 0.3.14 Warning: client version is 0.4.0 ollama pull llama3.2-vision pulling manifest Error: pull model manifest: 412: The model you are attempting to pull requires a newer version of Ollama. Please download the latest version at: https://ollama.com/download ollama pull llama3.2-vision:90b pulling manifest Error: pull model manifest: 412: The model you are attempting to pull requires a newer version of Ollama. Please download the latest version at: https://ollama.com/download ### OS Linux ### GPU Nvidia ### CPU AMD ### Ollama version ollama version is 0.3.14 Warning: client version is 0.4.0
GiteaMirror added the bug label 2026-04-12 15:45:52 -05:00
Author
Owner

@rick-github commented on GitHub (Nov 7, 2024):

You need to restart the server.

<!-- gh-comment-id:2461266560 --> @rick-github commented on GitHub (Nov 7, 2024): You need to restart the server.
Author
Owner

@alexd1983 commented on GitHub (Nov 7, 2024):

same problem. restarting the server did not help. my version of ollama is stuck on 0.3.11

<!-- gh-comment-id:2462455964 --> @alexd1983 commented on GitHub (Nov 7, 2024): same problem. restarting the server did not help. my version of ollama is stuck on 0.3.11
Author
Owner

@rick-github commented on GitHub (Nov 7, 2024):

What command did you run to restart the server?

<!-- gh-comment-id:2462460487 --> @rick-github commented on GitHub (Nov 7, 2024): What command did you run to restart the server?
Author
Owner

@alexd1983 commented on GitHub (Nov 7, 2024):

i rebooted the whole server. sudo reboot

<!-- gh-comment-id:2462463024 --> @alexd1983 commented on GitHub (Nov 7, 2024): i rebooted the whole server. sudo reboot
Author
Owner

@rick-github commented on GitHub (Nov 7, 2024):

How does your system start ollama after a reboot? Is it configured as a service, ie a service file in /etc/systemd/system/ollama.service?

<!-- gh-comment-id:2462475279 --> @rick-github commented on GitHub (Nov 7, 2024): How does your system start ollama after a reboot? Is it configured as a service, ie a service file in `/etc/systemd/system/ollama.service`?
Author
Owner

@etherblitzdev commented on GitHub (Nov 7, 2024):

sudo tar -C /usr -xzf ollama-linux-amd64-rocm.tgz
sudo useradd -r -s /bin/false -U -m -d /usr/share/ollama ollama
sudo usermod -a -G ollama $(whoami)
sudo nano /etc/systemd/system/ollama.service
sudo systemctl enable ollama
sudo systemctl daemon-reload
sudo systemctl restart ollama

sudo systemctl status ollama

#Yes this below resolved ,it on this machine

yes configured as a service, /etc/systemd/system/ollama.service

worked like Lucky charms! Above was insufficient.

sudo reboot

ollama --version
ollama version is 0.4.0

#Downloaded :-D
ollama pull llama3.2-vision

#Downloading :-D
ollama pull llama3.2-vision:90b

Please close this ticket, at least for this issue.

On Thu, Nov 7, 2024 at 4:03 PM alexd1983 @.***> wrote:

i rebooted the whole server. sudo reboot


Reply to this email directly, view it on GitHub
https://github.com/ollama/ollama/issues/7539#issuecomment-2462463024,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AHWIVBZXMMVJX4DFK4FEFZDZ7N6M3AVCNFSM6AAAAABRKGF3H2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDINRSGQ3DGMBSGQ
.
You are receiving this because you authored the thread.Message ID:
@.***>

<!-- gh-comment-id:2463063928 --> @etherblitzdev commented on GitHub (Nov 7, 2024): sudo tar -C /usr -xzf ollama-linux-amd64-rocm.tgz sudo useradd -r -s /bin/false -U -m -d /usr/share/ollama ollama sudo usermod -a -G ollama $(whoami) sudo nano /etc/systemd/system/ollama.service sudo systemctl enable ollama sudo systemctl daemon-reload sudo systemctl restart ollama sudo systemctl status ollama #Yes this below resolved ,it on this machine # yes configured as a service, /etc/systemd/system/ollama.service # worked like Lucky charms! Above was insufficient. sudo reboot ollama --version ollama version is 0.4.0 #Downloaded :-D ollama pull llama3.2-vision #Downloading :-D ollama pull llama3.2-vision:90b Please close this ticket, at least for this issue. On Thu, Nov 7, 2024 at 4:03 PM alexd1983 ***@***.***> wrote: > i rebooted the whole server. sudo reboot > > — > Reply to this email directly, view it on GitHub > <https://github.com/ollama/ollama/issues/7539#issuecomment-2462463024>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/AHWIVBZXMMVJX4DFK4FEFZDZ7N6M3AVCNFSM6AAAAABRKGF3H2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDINRSGQ3DGMBSGQ> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#4794