Last active
August 4, 2023 20:45
-
-
Save Pompeu/4b70621315cc060f06067eca61c174e9 to your computer and use it in GitHub Desktop.
install_nodejs_ubuntu.sh
This file contains 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
wget https://nodejs.org/dist/v14.17.4/node-v14.17.4-linux-x64.tar.xz \ | |
tar -xvf node-v14.17.4-linux-x64.tar.xz \ | |
cd node-v14.17.4-linux-x64/ \ | |
# edite seu .bashrc ou .zshrc com esse if abaixo | |
#if [ -d "$HOME/Downloads/node-v14.17.4-linux-x64" ] ; then | |
# PATH="$PATH:$HOME/Downloads/node-v14.17.4-linux-x64/bin" | |
#fi | |
#https://nodejs.org/en/https://nodejs.org/en/ | |
#https://github.com/nvm-sh/nvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment