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.
- Download NVM here
- Run the installer and follow the installation wizard.
- Open a "Command Prompt" or "PowerShell" window.
- 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