Skip to content

Instantly share code, notes, and snippets.

@acruzpr
Forked from ted-piotrowski/visualstudiocode.sh
Created March 29, 2018 20:49
Show Gist options
  • Save acruzpr/aedc117dfe398832b54d38f8fade68e4 to your computer and use it in GitHub Desktop.
Save acruzpr/aedc117dfe398832b54d38f8fade68e4 to your computer and use it in GitHub Desktop.
Visual Studio Code on ARM Debian Linux
# building Visual Studio Code Debian package on ARM
# get source code
git clone git@github.com:Microsoft/vscode.git
cd vscode
# build debian package
./scripts/npm.sh install --arch=armhf
./node_modules/.bin/gulp vscode-linux-arm-build-deb
# locate built package, install and run
find . -name *.deb #this will give location of built package
sudo dpkg install [location-from-previous-step]
code-oss # to run the installed program
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment