Visual Studio Code for Jetson
Published:
Visual Studio Code is my favorite IDE to work with, unfortunately it doesnt work with ARM architectures such as the Jetson boards…but we are lucky it is possible to install it.
First of all, open a terminal and go to de directory where you want to install VSC, then do the following:
Install the rep keys and setup
wget -O script.deb.sh https://packagecloud.io/install/repositories/headmelted/codebuilds/script.deb.sh
Sudo chmod +x script.deb.sh
sudo bash script.deb.sh
Run the installation script
wget -O vscodeInstall.sh https://code.headmelted.com/installers/apt.sh
Sudo chmod +x vscodeInstall.sh
sudo bash vscodeInstall.sh
Now you can start VSC by calling code-oss
within a terminal.
Check next post to know how to code remotely using VSC