Skip to content

Instantly share code, notes, and snippets.

@woosal1337
Created May 27, 2022 21:43
Show Gist options
  • Save woosal1337/115363c5a7b27235507f7a823e8819b7 to your computer and use it in GitHub Desktop.
Save woosal1337/115363c5a7b27235507f7a823e8819b7 to your computer and use it in GitHub Desktop.
Nodejs installation fix for Ubuntu 22.04 Jammy Jellyfish edition
sudo curl -LO https://nodejs.org/dist/v18.0.0/node-v18.0.0-linux-x64.tar.xz
sudo tar -xvf node-v18.0.0-linux-x64.tar.xz
sudo cp -r node-v18.0.0-linux-x64/{bin,include,lib,share} /usr/
node --version # => v18.0.0
@woosal1337
Copy link
Author

curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install nodejs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment