<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Install DeepSeek Locally with Ollama LLM in Ubuntu 24.04	</title>
	<atom:link href="https://www.tecmint.com/run-deepseek-locally-on-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/run-deepseek-locally-on-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Wed, 05 Mar 2025 04:23:40 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2283972</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 05 Mar 2025 04:23:40 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=59492#comment-2283972</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2283093&quot;&gt;NNatty&lt;/a&gt;.

@NNatty,

 I&#039;m glad you managed to resolve it by doing a clean reinstall.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2283093">NNatty</a>.</p>
<p>@NNatty,</p>
<p> I&#8217;m glad you managed to resolve it by doing a clean reinstall.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NNatty		</title>
		<link>https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2283093</link>

		<dc:creator><![CDATA[NNatty]]></dc:creator>
		<pubDate>Tue, 04 Mar 2025 13:01:18 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=59492#comment-2283093</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2280511&quot;&gt;Ravi Saive&lt;/a&gt;.

Thanks so much for your help! The solution was surprisingly simple. It was silly and funny, actually! :D

I&#039;d been noticing for a while that I couldn&#039;t locate the Open WebUI logs. This was confirmed when I used the commands you suggested to &lt;code&gt;find /.open-webui/logs/latest.log&lt;/code&gt; and &lt;code&gt;/.open-webui/.env&lt;/code&gt; – both resulted in &quot;&lt;strong&gt;No such file or directory&lt;/strong&gt;&quot; errors.

In the end, I just completely reinstalled everything remotely related to open-webui, using:
&lt;pre&gt;
`pip uninstall -r requirements.txt`
`pip uninstall open-webui`
&lt;/pre&gt;
followed by manually deleting any remaining files. :D

Thank you for your time and effort! :3]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2280511">Ravi Saive</a>.</p>
<p>Thanks so much for your help! The solution was surprisingly simple. It was silly and funny, actually! :D</p>
<p>I&#8217;d been noticing for a while that I couldn&#8217;t locate the Open WebUI logs. This was confirmed when I used the commands you suggested to <code>find /.open-webui/logs/latest.log</code> and <code>/.open-webui/.env</code> – both resulted in &#8220;<strong>No such file or directory</strong>&#8221; errors.</p>
<p>In the end, I just completely reinstalled everything remotely related to open-webui, using:</p>
<pre>
`pip uninstall -r requirements.txt`
`pip uninstall open-webui`
</pre>
<p>followed by manually deleting any remaining files. :D</p>
<p>Thank you for your time and effort! :3</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2280511</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 03 Mar 2025 04:58:24 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=59492#comment-2280511</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2277749&quot;&gt;NNatty&lt;/a&gt;.

@NNatty,

Thank you for your feedback! 

Since &lt;strong&gt;DeepSeek&lt;/strong&gt; is working in the terminal but not through &lt;strong&gt;Open WebUI&lt;/strong&gt;, it seems like the issue is related to WebUI configuration or network access. 

Let’s troubleshoot step by step:

1. Run this command on your Ubuntu server to check what’s causing the &quot;&lt;strong&gt;500: Internal Error&lt;/strong&gt;&quot;:
&lt;pre&gt;
tail -f ~/.open-webui/logs/latest.log
&lt;/pre&gt;
2. Since Open WebUI depends on Ollama, ensure Ollama is running:
&lt;pre&gt;
systemctl status ollama
OR
systemctl restart ollama
&lt;/pre&gt;
3. Also, confirm that DeepSeek is installed correctly.
&lt;pre&gt;
ollama list
&lt;/pre&gt;
If you don’t see &lt;strong&gt;deepseek-r1:7b&lt;/strong&gt;, reinstall it:
&lt;pre&gt;
ollama pull deepseek-r1:7b
&lt;/pre&gt;
4. Since you’re accessing WebUI from another machine (&lt;code&gt;ip_virtual_m:8080&lt;/code&gt;), you need to ensure it listens on all interfaces.
&lt;pre&gt;
nano ~/.open-webui/.env
&lt;/pre&gt;
Modify or add these lines:
&lt;pre&gt;
PORT=8080
HOST=0.0.0.0
&lt;/pre&gt;
5. Save and restart WebUI:
&lt;pre&gt;
pkill open-webui
open-webui serve &amp;
&lt;/pre&gt;
Then, try accessing &lt;code&gt;http://your_vm_ip:8080&lt;/code&gt; from your desktop.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2277749">NNatty</a>.</p>
<p>@NNatty,</p>
<p>Thank you for your feedback! </p>
<p>Since <strong>DeepSeek</strong> is working in the terminal but not through <strong>Open WebUI</strong>, it seems like the issue is related to WebUI configuration or network access. </p>
<p>Let’s troubleshoot step by step:</p>
<p>1. Run this command on your Ubuntu server to check what’s causing the &#8220;<strong>500: Internal Error</strong>&#8220;:</p>
<pre>
tail -f ~/.open-webui/logs/latest.log
</pre>
<p>2. Since Open WebUI depends on Ollama, ensure Ollama is running:</p>
<pre>
systemctl status ollama
OR
systemctl restart ollama
</pre>
<p>3. Also, confirm that DeepSeek is installed correctly.</p>
<pre>
ollama list
</pre>
<p>If you don’t see <strong>deepseek-r1:7b</strong>, reinstall it:</p>
<pre>
ollama pull deepseek-r1:7b
</pre>
<p>4. Since you’re accessing WebUI from another machine (<code>ip_virtual_m:8080</code>), you need to ensure it listens on all interfaces.</p>
<pre>
nano ~/.open-webui/.env
</pre>
<p>Modify or add these lines:</p>
<pre>
PORT=8080
HOST=0.0.0.0
</pre>
<p>5. Save and restart WebUI:</p>
<pre>
pkill open-webui
open-webui serve &#038;
</pre>
<p>Then, try accessing <code>http://your_vm_ip:8080</code> from your desktop.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NNatty		</title>
		<link>https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2277749</link>

		<dc:creator><![CDATA[NNatty]]></dc:creator>
		<pubDate>Fri, 28 Feb 2025 15:56:21 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=59492#comment-2277749</guid>

					<description><![CDATA[Hello,

Thank you for your excellent article. I have a problem. I installed &lt;strong&gt;DeepSeek&lt;/strong&gt; according to your guide. I&#039;m using a system without a GPU. When I open the &lt;strong&gt;WebUI&lt;/strong&gt;, I can successfully register and log in, but I can&#039;t use the &lt;strong&gt;DeepSeek&lt;/strong&gt; model; all I see is a white screen with the message &quot;&lt;strong&gt;500: Internal Error&lt;/strong&gt;&quot;.

I installed the &lt;strong&gt;DeepSeek&lt;/strong&gt; model on an &lt;strong&gt;Ubuntu Server 24.04&lt;/strong&gt; system without a GUI, on a virtual machine using &lt;strong&gt;Hyper-V&lt;/strong&gt;. The model works fine in the terminal, but I can&#039;t access the browser on this virtual machine to use the Open WebUI. Therefore, I open a browser on my regular desktop computer and go to the &lt;code&gt;ip_virtual_m:8080&lt;/code&gt; link. Again, the Open WebUI opens, and I can log in, but nothing else works.

Do you know what the problem might be, or do you have any guesses? I would appreciate any help and response.

Thank you very much.]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>Thank you for your excellent article. I have a problem. I installed <strong>DeepSeek</strong> according to your guide. I&#8217;m using a system without a GPU. When I open the <strong>WebUI</strong>, I can successfully register and log in, but I can&#8217;t use the <strong>DeepSeek</strong> model; all I see is a white screen with the message &#8220;<strong>500: Internal Error</strong>&#8220;.</p>
<p>I installed the <strong>DeepSeek</strong> model on an <strong>Ubuntu Server 24.04</strong> system without a GUI, on a virtual machine using <strong>Hyper-V</strong>. The model works fine in the terminal, but I can&#8217;t access the browser on this virtual machine to use the Open WebUI. Therefore, I open a browser on my regular desktop computer and go to the <code>ip_virtual_m:8080</code> link. Again, the Open WebUI opens, and I can log in, but nothing else works.</p>
<p>Do you know what the problem might be, or do you have any guesses? I would appreciate any help and response.</p>
<p>Thank you very much.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2273872</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 24 Feb 2025 04:58:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=59492#comment-2273872</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2273653&quot;&gt;Hugo&lt;/a&gt;.

@Hugo,

Make sure the contents are correctly written and replace &lt;code&gt;your_username&lt;/code&gt; with your actual username.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/run-deepseek-locally-on-linux/comment-page-1/#comment-2273653">Hugo</a>.</p>
<p>@Hugo,</p>
<p>Make sure the contents are correctly written and replace <code>your_username</code> with your actual username.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
