Skip to content

Instantly share code, notes, and snippets.

@PoisonousJohn
Forked from ted-piotrowski/visualstudiocode.sh
Created February 18, 2017 14:22
Show Gist options
  • Save PoisonousJohn/712db6b728a4245887ab526e83453d4d to your computer and use it in GitHub Desktop.
Save PoisonousJohn/712db6b728a4245887ab526e83453d4d 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