From 7c9bbd43369ccf52a08804617fb0efb8096a4469 Mon Sep 17 00:00:00 2001 From: stuffbymax <96355058+stuffbymax@users.noreply.github.com> Date: Mon, 9 Feb 2026 03:31:46 +0000 Subject: [PATCH] Add shell reload instructions for nvm setup (#2446) Added instructions to reload the shell after loading nvm. i forgot to add it because i am stupid --- install.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install.md b/install.md index fe9a2388b..e4f5ab38d 100644 --- a/install.md +++ b/install.md @@ -34,6 +34,9 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +# Reload shell +source ~/.bashrc # Or source ~/.zshrc if using Zsh + # Install latest Node.js and npm nvm install node @@ -53,10 +56,14 @@ sudo yum install -y curl # Install nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash + # Load nvm export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +# Reload shell +source ~/.bashrc # Or source ~/.zshrc if using Zsh + # Install latest Node.js and npm nvm install node @@ -113,6 +120,9 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +# Reload shell +source ~/.bashrc # Or source ~/.zshrc if using Zsh + # Install latest Node.js and npm nvm install node