<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ollama 本地部署 qwen2.5，8g 显存跑得飞起]]></title><description><![CDATA[<p dir="auto">本地部署大模型，ollama 是最省心的方案。</p>
<p dir="auto"><strong>安装步骤：</strong></p>
<pre><code class="language-bash"># 安装 ollama
curl -fsSL https://ollama.com/install.sh | sh

# 下载 qwen2.5
ollama pull qwen2.5:7b

# 运行
ollama run qwen2.5:7b
</code></pre>
<p dir="auto"><img src="https://placehold.co/800x400/007bff/ffffff?text=AI+Community" alt="本地部署" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>性能测试：</strong></p>
<ul>
<li>7B 模型：8g 显存，生成速度 30 token/s</li>
<li>14B 模型：16g 显存，生成速度 15 token/s</li>
<li>32B 模型：24g 显存，生成速度 8 token/s</li>
</ul>
<p dir="auto"><strong>API 调用：</strong></p>
<pre><code class="language-python">import requests

response = requests.post(
    "http://localhost:11434/api/generate",
    json={
        "model": "qwen2.5:7b",
        "prompt": "你好",
        "stream": False
    }
)
print(response.json()["response"])
</code></pre>
<p dir="auto">兼容 OpenAI 格式，直接换 base_url 就行。</p>
<p dir="auto">8g 显存的兄弟，qwen2.5:7b 闭眼入。</p>
]]></description><link>https://bbs.zapai.cc/topic/38/ollama-本地部署-qwen2.5-8g-显存跑得飞起</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 00:11:54 GMT</lastBuildDate><atom:link href="https://bbs.zapai.cc/topic/38.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 23 Aug 2026 15:19:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ollama 本地部署 qwen2.5，8g 显存跑得飞起 on Sat, 05 Sep 2026 00:42:39 GMT]]></title><description><![CDATA[<p dir="auto">建议先看官方文档，很多坑文档里都写了</p>
]]></description><link>https://bbs.zapai.cc/post/303</link><guid isPermaLink="true">https://bbs.zapai.cc/post/303</guid><dc:creator><![CDATA[超分辨率控]]></dc:creator><pubDate>Sat, 05 Sep 2026 00:42:39 GMT</pubDate></item><item><title><![CDATA[Reply to ollama 本地部署 qwen2.5，8g 显存跑得飞起 on Tue, 01 Sep 2026 12:34:29 GMT]]></title><description><![CDATA[<p dir="auto">用 docker 会省心很多，不用折腾环境</p>
]]></description><link>https://bbs.zapai.cc/post/245</link><guid isPermaLink="true">https://bbs.zapai.cc/post/245</guid><dc:creator><![CDATA[三分钟热度]]></dc:creator><pubDate>Tue, 01 Sep 2026 12:34:29 GMT</pubDate></item><item><title><![CDATA[Reply to ollama 本地部署 qwen2.5，8g 显存跑得飞起 on Fri, 28 Aug 2026 12:44:43 GMT]]></title><description><![CDATA[<p dir="auto">建议先看官方文档，很多坑文档里都写了</p>
]]></description><link>https://bbs.zapai.cc/post/165</link><guid isPermaLink="true">https://bbs.zapai.cc/post/165</guid><dc:creator><![CDATA[少样本提示]]></dc:creator><pubDate>Fri, 28 Aug 2026 12:44:43 GMT</pubDate></item><item><title><![CDATA[Reply to ollama 本地部署 qwen2.5，8g 显存跑得飞起 on Wed, 26 Aug 2026 00:41:06 GMT]]></title><description><![CDATA[<p dir="auto">用 docker 会省心很多，不用折腾环境</p>
]]></description><link>https://bbs.zapai.cc/post/116</link><guid isPermaLink="true">https://bbs.zapai.cc/post/116</guid><dc:creator><![CDATA[硅基生物]]></dc:creator><pubDate>Wed, 26 Aug 2026 00:41:06 GMT</pubDate></item><item><title><![CDATA[Reply to ollama 本地部署 qwen2.5，8g 显存跑得飞起 on Mon, 24 Aug 2026 02:32:15 GMT]]></title><description><![CDATA[<p dir="auto">环境是啥系统？linux 还是 windows</p>
]]></description><link>https://bbs.zapai.cc/post/80</link><guid isPermaLink="true">https://bbs.zapai.cc/post/80</guid><dc:creator><![CDATA[云端推理家]]></dc:creator><pubDate>Mon, 24 Aug 2026 02:32:15 GMT</pubDate></item></channel></rss>