ollama - 💡(How to fix) Fix Ollama pull will fully hang [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
ollama/ollama#15091Fetched 2026-04-08 01:41:26
View on GitHub
Comments
1
Participants
2
Timeline
2
Reactions
0
Participants
Timeline (top)
commented ×1labeled ×1

Code Example

Codex was running in VSCode (via WSL) actively. Not sure if that had something to do with it, but it was also killed with wsl shutdown.
RAW_BUFFERClick to expand / collapse

What is the issue?

ollama pulls dont get to the "pulling manifest" print. No log output.

Shutting down wsl fixed the issue.

Relevant log output

Codex was running in VSCode (via WSL) actively. Not sure if that had something to do with it, but it was also killed with wsl shutdown.

OS

WSL2

GPU

Nvidia

CPU

Intel

Ollama version

0.18.3

extent analysis

Fix Plan

The fix involves restarting the WSL service and ensuring that the ollama process is properly terminated before restarting.

  • Stop the ollama process: pkill -f ollama
  • Shut down WSL: wsl --shutdown
  • Restart WSL: wsl
  • Restart the ollama process

Example code to automate the restart process:

#!/bin/bash
pkill -f ollama
wsl --shutdown
sleep 5
wsl
# restart ollama process

Save this script as a file (e.g., restart_ollama.sh), make it executable with chmod +x restart_ollama.sh, and then run it with ./restart_ollama.sh

Verification

To verify that the fix worked, check the ollama logs for the "pulling manifest" print statement after restarting the process.

Extra Tips

  • Ensure that Codex is not running in VSCode (via WSL) while restarting ollama.
  • If the issue persists, try updating ollama to the latest version.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING