Created
October 23, 2019 14:34
-
-
Save donfreiday/dce1b86e24df978fb1ac842922b4d5ce to your computer and use it in GitHub Desktop.
Install NodeJS and VS Code on Ubuntu 18.04
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
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
sudo apt install -y nodejs | |
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | |
sudo apt update | |
sudo apt install code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment