Zainstaluj konkretną wersję węzła i zaktualizuj węzeł, aby najnowsza stabilna wersja

# Install specific node version
sudo curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt install nodejs

# To update node to lastest stable version
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
Vishal