Created
March 24, 2022 16:11
-
-
Save whatisor/3eaacbe3d194f3d27d45348d4c2b635d to your computer and use it in GitHub Desktop.
How to install nodejs in ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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