Visual Studio IDE - Rafcin/XavierToolkit GitHub Wiki

Jetson Xavier Visual Studio

In case anyone wants to develop on the Jetson Xavier (Or Tx1-Tx2 systems) you should check out this tutorial by Zergb. Some notes use NodeJS 8 or 9 and if you have Node 10 or higher run apt purge and remove it. Devtalk Visual Studio

Install NodeJS on Ubuntu

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
# dependencies
sudo apt install git libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm libnss3 apt-transport-https

# node.js
wget https://deb.nodesource.com/setup_8.x

sudo bash setup_8.x
sudo apt install -y nodejs
nodejs -v

# yarn
wget https://dl.yarnpkg.com/debian/pubkey.gpg

sudo apt-key add pubkey.gpg
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn
yarn --version

# clone code and install all dependencies by yarn
git clone https://github.com/microsoft/vscode

cd vscode
gedit package.json
    "electron-mksnapshot": "~2.0.0",
    "gulp-atom-electron": "^1.17.0",
gedit test/smoke/package.json
    "electron":"2.0.0",
yarn

# build
yarn run watch

# run
 ./scripts/code.sh