Setup Node Version

Setup Node Version (Optional)

This step is entirely optional, but if you face any kind of errors during the process, you can follow these steps to use a compatible Node version.

MacOS 

Open terminal and run the following commands to install and test NVM (Node Version Manager) using Homebrew.

brew install nvm
nvm install 18
nvm use 18
node -v
ℹ️

You should see "v18.20.0" or similar version in your terminal.

Windows

Follow the steps below to install NVM (Node Version Manager) on Windows.

  1. Download NVM here
  2. Run the installer and follow the installation wizard.
  3. Open a "Command Prompt" or "PowerShell" window.
  4. Type the following commands to install required Node version:
nvm install 18
nvm use 18
node -v
ℹ️

You should see "v18.20.0" or similar version in your terminal.

Linux

Follow this guide (opens in a new tab) to install NVM on Linux