<?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[Topics tagged with zsh]]></title><description><![CDATA[A list of topics that have been tagged with zsh]]></description><link>https://lankadevelopers.lk/tags/zsh</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 01:21:00 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/tags/zsh.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[How to Fix &quot;nvm not found&quot; Error in MacOS]]></title><description><![CDATA[<p dir="auto">When you install NVM using Homebrew, you still need to add the following lines to your shell configuration file (.bashrc, .zshrc, etc.)</p>
<pre><code class="language-bash">export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
</code></pre>
<p dir="auto">If you are using the Bash shell, open the ~/.bashrc file in your favorite text editor, and add the following lines at the end of the file:</p>
<pre><code class="language-bash">export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
</code></pre>
<p dir="auto">If you are using the Zsh shell, open the ~/.zshrc file in your favorite text editor, and add the following lines at the end of the file:</p>
<pre><code class="language-bash">export NVM_DIR="$HOME/.nvm"
. "/usr/local/opt/nvm/nvm.sh"
</code></pre>
<p dir="auto">After adding the lines to the appropriate file, save it and close the editor. Then, restart your terminal or run the source command to load the changes:</p>
<pre><code class="language-bash">source ~/.bashrc
</code></pre>
<pre><code class="language-bash">source ~/.zshrc
</code></pre>
]]></description><link>https://lankadevelopers.lk/topic/958/how-to-fix-nvm-not-found-error-in-macos</link><guid isPermaLink="true">https://lankadevelopers.lk/topic/958/how-to-fix-nvm-not-found-error-in-macos</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>