Created
May 28, 2018 13:40
-
-
Save kgersen/097ce642f7773e0ed075764fe428a984 to your computer and use it in GitHub Desktop.
install VS Code on ChromeOS (linux app)
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
sudo apt install pgp | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' | |
sudo apt update | |
sudo apt install code # or code-insiders | |
sudo apt install libxss1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment