Skip to content

Instantly share code, notes, and snippets.

@blinderjay
Forked from ted-piotrowski/visualstudiocode.sh
Created May 25, 2018 21:14
Show Gist options
  • Save blinderjay/4ce03455033011e3befe106ed0ef7228 to your computer and use it in GitHub Desktop.
Save blinderjay/4ce03455033011e3befe106ed0ef7228 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