Skip to content

Instantly share code, notes, and snippets.

@ted-piotrowski
Last active August 31, 2022 14:27
Show Gist options
  • Save ted-piotrowski/e5c223a6a2f6f3079cb38c959ceecaa6 to your computer and use it in GitHub Desktop.
Save ted-piotrowski/e5c223a6a2f6f3079cb38c959ceecaa6 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
@hartraft
Copy link

@fifn2
Copy link

fifn2 commented May 31, 2019

Is this the same as vscode? Will it get updates?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment