How uninstall the node version
The correct way to unistall the version of the node from the terminal
NVM
❯ nvm list
Before
❯ nvm list
v18.18.0
v20.11.0
v20.14.0
-> v21.1.0
After
remove manually:
cd ~/.nvm/versions/node
sudo rm -rf v20.11.0/
result:
❯ nvm list
v18.18.0
v20.14.0
-> v21.1.0