Skip to content

Instantly share code, notes, and snippets.

@ChaosJohn
Forked from ted-piotrowski/visualstudiocode.sh
Created March 15, 2017 17:26
Show Gist options
  • Save ChaosJohn/3f21d8d07b9c7a067cea047f1d46c0e3 to your computer and use it in GitHub Desktop.
Save ChaosJohn/3f21d8d07b9c7a067cea047f1d46c0e3 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 [email protected]: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