[GH-ISSUE #3501] Ollama push got retrieving manifest Error: file does not exist #2157

Open
opened 2026-04-12 12:23:03 -05:00 by GiteaMirror · 19 comments
Owner

Originally created by @pacozaa on GitHub (Apr 5, 2024).
Original GitHub issue: https://github.com/ollama/ollama/issues/3501

What is the issue?

When I run ollama push [myusername]/modelthatexist I got error

retrieving manifest 
Error: file does not exist

What did you expect to see?

I expected the model to be pushed.

Steps to reproduce

Are there any recent changes that introduced the issue?

No response

OS

No response

Architecture

No response

Platform

No response

Ollama version

No response

GPU

No response

GPU info

No response

CPU

No response

Other software

No response

Originally created by @pacozaa on GitHub (Apr 5, 2024). Original GitHub issue: https://github.com/ollama/ollama/issues/3501 ### What is the issue? When I run `ollama push [myusername]/modelthatexist` I got error ``` retrieving manifest Error: file does not exist ``` ### What did you expect to see? I expected the model to be pushed. ### Steps to reproduce - Download this gguf https://huggingface.co/pacozaa/TinyLlama-1.1B-intermediate-step-1431k-3T-GGUF - Create Model file that link to the gguf - Run a model - Next, copy your model to your username's namespace: `ollama cp example <your username>/example` - Push the model: `ollama push <your username>/example` ### Are there any recent changes that introduced the issue? _No response_ ### OS _No response_ ### Architecture _No response_ ### Platform _No response_ ### Ollama version _No response_ ### GPU _No response_ ### GPU info _No response_ ### CPU _No response_ ### Other software _No response_
GiteaMirror added the networkingbug labels 2026-04-12 12:23:03 -05:00
Author
Owner

@aosan commented on GitHub (Apr 6, 2024):

Also getting this error when trying to push a model, with ollama 0.1.30

<!-- gh-comment-id:2041041076 --> @aosan commented on GitHub (Apr 6, 2024): Also getting this error when trying to push a model, with ollama 0.1.30
Author
Owner

@pacozaa commented on GitHub (Apr 7, 2024):

I was using tinyllama-1431k-3T-base to push it wasn't work.

I have to change it to just tinyllama and it's working.

<!-- gh-comment-id:2041284159 --> @pacozaa commented on GitHub (Apr 7, 2024): I was using `tinyllama-1431k-3T-base` to push it wasn't work. I have to change it to just `tinyllama` and it's working.
Author
Owner

@emsi commented on GitHub (Apr 8, 2024):

I'm still having the same issue with the current HEAD:

root@105638d575be:/# ollama -v
ollama version is 0.1.30
root@105638d575be:/# ollama run emsi/Qra-13b
>>> Send a message (/? for help)
root@105638d575be:/# ollama push emsi/Qra-13b
retrieving manifest 
Error: file does not exist

ofc I've added my pub keys:
image

<!-- gh-comment-id:2043316272 --> @emsi commented on GitHub (Apr 8, 2024): I'm still having the same issue with the current HEAD: ``` root@105638d575be:/# ollama -v ollama version is 0.1.30 root@105638d575be:/# ollama run emsi/Qra-13b >>> Send a message (/? for help) root@105638d575be:/# ollama push emsi/Qra-13b retrieving manifest Error: file does not exist ``` ofc I've added my pub keys: ![image](https://github.com/ollama/ollama/assets/433383/2dc2fbf9-c6c5-461b-a447-60a170df12ec)
Author
Owner

@pacozaa commented on GitHub (Apr 9, 2024):

@emsi Try to use a model name without a special character. From Qra-13b to qra and use tag instead.

<!-- gh-comment-id:2044096974 --> @pacozaa commented on GitHub (Apr 9, 2024): @emsi Try to use a model name without a special character. From `Qra-13b` to `qra` and use tag instead.
Author
Owner

@pacozaa commented on GitHub (Apr 9, 2024):

@emsi Try qra:13b also take a look at https://github.com/ollama/ollama/blob/main/docs/api.md#model-names

<!-- gh-comment-id:2044097702 --> @pacozaa commented on GitHub (Apr 9, 2024): @emsi Try `qra:13b` also take a look at https://github.com/ollama/ollama/blob/main/docs/api.md#model-names
Author
Owner

@emsi commented on GitHub (Apr 9, 2024):

@emsi Try qra:13b also take a look at https://github.com/ollama/ollama/blob/main/docs/api.md#model-names

It's a pitty that web UI provides a validator that returns a message explaining that while the ollama server just spits some bogus error.

<!-- gh-comment-id:2045306593 --> @emsi commented on GitHub (Apr 9, 2024): > @emsi Try `qra:13b` also take a look at https://github.com/ollama/ollama/blob/main/docs/api.md#model-names It's a pitty that web UI provides a validator that returns a message explaining that while the ollama server just spits some bogus error.
Author
Owner

@pacozaa commented on GitHub (Apr 9, 2024):

@emsi True. I reopened issue.

<!-- gh-comment-id:2046139640 --> @pacozaa commented on GitHub (Apr 9, 2024): @emsi True. I reopened issue.
Author
Owner

@pdevine commented on GitHub (Apr 12, 2024):

@emsi and @pacozaa I believe the problem is the uppercase characters in the model name. If you can just change the names to lowercase it should work. We actually have a change going in soon that should validate this better on the CLI.

<!-- gh-comment-id:2052615232 --> @pdevine commented on GitHub (Apr 12, 2024): @emsi and @pacozaa I believe the problem is the uppercase characters in the model name. If you can just change the names to lowercase it _should_ work. We actually have a change going in soon that should validate this better on the CLI.
Author
Owner

@fabceolin commented on GitHub (May 24, 2024):

I am having this issue with ollama 0.1.38

<!-- gh-comment-id:2129421350 --> @fabceolin commented on GitHub (May 24, 2024): I am having this issue with ollama 0.1.38
Author
Owner

@pdevine commented on GitHub (May 24, 2024):

@fabceolin Can you give some details? What was the model name you were trying to push? Do you have logs?

<!-- gh-comment-id:2130255782 --> @pdevine commented on GitHub (May 24, 2024): @fabceolin Can you give some details? What was the model name you were trying to push? Do you have logs?
Author
Owner

@fabceolin commented on GitHub (May 24, 2024):

It sounds to me that the Ollama service takes some time to make a new model created via the web interface available to push. After some time, I was able to push.

<!-- gh-comment-id:2130280770 --> @fabceolin commented on GitHub (May 24, 2024): It sounds to me that the Ollama service takes some time to make a new model created via the web interface available to push. After some time, I was able to push.
Author
Owner

@fabceolin commented on GitHub (May 24, 2024):

The push error is gone, but after the push, my pushed model is ignored by the ollama.com service.

ollama list
NAME                            ID              SIZE    MODIFIED     
fabceolin/mistralcrew:latest    a2649c1dbb9e    4.1 GB  11 hours ago

Checking if the remote registry exists

ollama pull fabceolin/mistralcrew:latest
pulling manifest 
Error: pull model manifest: file does not exist

Pushing the model

ollama push fabceolin/mistralcrew:latest
retrieving manifest 
pushing ff82381e2bea... 100% ▕████████████████████████████████████████▏ 4.1 GB                         
pushing 43070e2d4e53... 100% ▕████████████████████████████████████████▏  11 KB                         
pushing c43332387573... 100% ▕████████████████████████████████████████▏   67 B      

pulling the model after push

ollama pull fabceolin/mistralcrew:latest
pulling manifest 
Error: pull model manifest: file does not exist

The
https://ollama.com/fabceolin/mistral-crew
returns
No models have been pushed.

ollama --version
ollama version is 0.1.38
<!-- gh-comment-id:2130516441 --> @fabceolin commented on GitHub (May 24, 2024): The push error is gone, but after the push, my pushed model is ignored by the ollama.com service. ``` ollama list NAME ID SIZE MODIFIED fabceolin/mistralcrew:latest a2649c1dbb9e 4.1 GB 11 hours ago ``` Checking if the remote registry exists ``` ollama pull fabceolin/mistralcrew:latest pulling manifest Error: pull model manifest: file does not exist ``` Pushing the model ``` ollama push fabceolin/mistralcrew:latest retrieving manifest pushing ff82381e2bea... 100% ▕████████████████████████████████████████▏ 4.1 GB pushing 43070e2d4e53... 100% ▕████████████████████████████████████████▏ 11 KB pushing c43332387573... 100% ▕████████████████████████████████████████▏ 67 B ``` pulling the model after push ``` ollama pull fabceolin/mistralcrew:latest pulling manifest Error: pull model manifest: file does not exist ``` The https://ollama.com/fabceolin/mistral-crew returns No models have been pushed. ``` ollama --version ollama version is 0.1.38 ```
Author
Owner

@fabceolin commented on GitHub (May 25, 2024):

It is probably related to the compatibility of Ollama 0.1.38 with Mistral v0.3.
Using llama2 worked.

<!-- gh-comment-id:2130599441 --> @fabceolin commented on GitHub (May 25, 2024): It is probably related to the compatibility of Ollama 0.1.38 with Mistral v0.3. Using llama2 worked.
Author
Owner

@ikamensh commented on GitHub (Sep 5, 2024):

same issue with latest ollama now.
ikamen/phi-3.5-mini-128k_Q4KM doesnt work
ikamen/phi3.5mini:Q4KM works. The problem must be - or _

<!-- gh-comment-id:2331929246 --> @ikamensh commented on GitHub (Sep 5, 2024): same issue with latest ollama now. `ikamen/phi-3.5-mini-128k_Q4KM` doesnt work `ikamen/phi3.5mini:Q4KM` works. The problem must be `-` or `_`
Author
Owner

@BruceMacD commented on GitHub (Dec 3, 2024):

For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward.

<!-- gh-comment-id:2515793521 --> @BruceMacD commented on GitHub (Dec 3, 2024): For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward.
Author
Owner

@i4ubaka commented on GitHub (Dec 7, 2024):

For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward.

Can confirm.

First tried to push with a name "Name-XX" (without quotes), got an error.

Changed it to "xxname" and success.

<!-- gh-comment-id:2525319441 --> @i4ubaka commented on GitHub (Dec 7, 2024): > For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward. Can confirm. First tried to push with a name "Name-XX" (without quotes), got an error. Changed it to "xxname" and success.
Author
Owner

@Badass-Nemesis commented on GitHub (Dec 8, 2024):

For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward.

I have an uppercase username, but the model name is in lowercase. Is this one of the reasons too? Because I'm facing this same issue

ollama push Badass_Nemesis/matthew
retrieving manifest
Error: file does not exist

<!-- gh-comment-id:2525568429 --> @Badass-Nemesis commented on GitHub (Dec 8, 2024): > For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward. I have an uppercase username, but the model name is in lowercase. Is this one of the reasons too? Because I'm facing this same issue ollama push Badass_Nemesis/matthew retrieving manifest Error: file does not exist
Author
Owner

@i4ubaka commented on GitHub (Dec 8, 2024):

For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward.

I have an uppercase username, but the model name is in lowercase. Is this one of the reasons too? Because I'm facing this same issue

ollama push Badass_Nemesis/matthew retrieving manifest Error: file does not exist

I have a username also with a capital letter, and it went through without an issue, so my guess would be that underscore ("_").

<!-- gh-comment-id:2526204721 --> @i4ubaka commented on GitHub (Dec 8, 2024): > > For future readers, this may be failing due to uppercase letters in the name of the model. I have a change open to make the error message better in this case going forward. > > I have an uppercase username, but the model name is in lowercase. Is this one of the reasons too? Because I'm facing this same issue > > ollama push Badass_Nemesis/matthew retrieving manifest Error: file does not exist I have a username also with a capital letter, and it went through without an issue, so my guess would be that underscore ("_").
Author
Owner

@Badass-Nemesis commented on GitHub (Dec 8, 2024):

I have a username also with a capital letter, and it went through without an issue, so my guess would be that underscore ("_").

I just created a new account with all lowercase username, without special characters, and it went through without any issues.

<!-- gh-comment-id:2526206015 --> @Badass-Nemesis commented on GitHub (Dec 8, 2024): > I have a username also with a capital letter, and it went through without an issue, so my guess would be that underscore ("_"). I just created a new account with all lowercase username, without special characters, and it went through without any issues.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#2157