Skip to content

Instantly share code, notes, and snippets.

@vicradon
Last active August 30, 2024 07:50
Show Gist options
  • Save vicradon/c3525da4e4c759de6c6441730b920671 to your computer and use it in GitHub Desktop.
Save vicradon/c3525da4e4c759de6c6441730b920671 to your computer and use it in GitHub Desktop.
Download and extract Node.js
#!/bin/bash
sudo apt install wget xz-utils -y
# download and extract node.js
wget https://nodejs.org/dist/v20.17.0/node-v20.17.0-linux-x64.tar.xz
tar -xf node-v20.17.0-linux-x64.tar.xz
cd node-v20.17.0-linux-x64
sudo cp bin/* /usr/local/bin
sudo cp -r lib/node_modules/ /usr/local/lib/
sudo cp -r share/* /usr/local/share
sudo cp -r include/* /usr/local/include
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment