Skip to content

Instantly share code, notes, and snippets.

@whatisor
Created March 24, 2022 16:11
Show Gist options
  • Select an option

  • Save whatisor/3eaacbe3d194f3d27d45348d4c2b635d to your computer and use it in GitHub Desktop.

Select an option

Save whatisor/3eaacbe3d194f3d27d45348d4c2b635d to your computer and use it in GitHub Desktop.
How to install nodejs in ubuntu
cd ~
curl -sL https://deb.nodesource.com/setup_16.x -o /tmp/nodesource_setup.sh
sudo bash /tmp/nodesource_setup.sh
sudo apt install nodejs
node -v
#you can change version in setup_16.x like setup_14.x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment