All Projects → zenetio → Install-VScode-On-TX2

zenetio / Install-VScode-On-TX2

Licence: MIT license
How to install VScode on Nvidia TX2

Projects that are alternatives of or similar to Install-VScode-On-TX2

linux nvidia jetson
Allied Vision CSI-2 camera driver for NVIDIA Jetson Systems. Currently supporting Nano, TX2, AGX Xavier, and Xavier NX. Support for TX2 NX coming soon.
Stars: ✭ 68 (+183.33%)
Mutual labels:  nvidia, tx2
GapFlyt
GapFlyt: Active Vision Based Minimalist Structure-less Gap Detection For Quadrotor Flight
Stars: ✭ 30 (+25%)
Mutual labels:  robot, nvidia
TX2-JetPack-Installation-Guide-Kr
한글로 작성된 TX2 JetPack 설치 가이드입니다.
Stars: ✭ 13 (-45.83%)
Mutual labels:  nvidia, tx2
URDF-Importer
URDF importer
Stars: ✭ 135 (+462.5%)
Mutual labels:  robot
dragon
DRAGON Stack manager
Stars: ✭ 20 (-16.67%)
Mutual labels:  arm64
nvidia-video-codec-rs
Bindings for the NVIDIA Video Codec SDK
Stars: ✭ 24 (+0%)
Mutual labels:  nvidia
linux-l4t
Linux kernel 3.10 forked from Nvidia Linux4Tegra for the TX1. Branches for L4T 24.2.1. Also available: 23.1 (DEPRECATED), 24.1 (DEPRECATED).
Stars: ✭ 21 (-12.5%)
Mutual labels:  nvidia
qqRobot.js
😊 QQ聊天机器人,使用JavaScript实现, 可以在安卓设备上运行。
Stars: ✭ 17 (-29.17%)
Mutual labels:  robot
nvidia-jetson-rt
Real-Time Scheduling with NVIDIA Jetson TX2
Stars: ✭ 38 (+58.33%)
Mutual labels:  nvidia
purge-nvda
Optimize external graphics for macs with discrete NVIDIA GPUs.
Stars: ✭ 91 (+279.17%)
Mutual labels:  nvidia
faucon
NVIDIA Falcon Microprocessor Suite
Stars: ✭ 28 (+16.67%)
Mutual labels:  nvidia
tacotron2
Multispeaker & Emotional TTS based on Tacotron 2 and Waveglow
Stars: ✭ 102 (+325%)
Mutual labels:  nvidia
unity-fracture
Fracture any mesh at runtime
Stars: ✭ 634 (+2541.67%)
Mutual labels:  nvidia
aria2-ariang-docker
🐳 Aria2 downloader and AriaNg webui Docker image based on Alpine Linux
Stars: ✭ 49 (+104.17%)
Mutual labels:  arm64
willsautoclick
Fastest Java autoclicker in the entire west
Stars: ✭ 12 (-50%)
Mutual labels:  robot
handbrake-nvenc-docker
Handbrake GUI with Web browser and VNC access. Supports NVENC encoding
Stars: ✭ 32 (+33.33%)
Mutual labels:  nvidia
fdtd3d
fdtd3d is an open source 1D, 2D, 3D FDTD electromagnetics solver with MPI, OpenMP and CUDA support for x86, arm, arm64 architectures
Stars: ✭ 77 (+220.83%)
Mutual labels:  arm64
TailCalibX
Pytorch implementation of Feature Generation for Long-Tail Classification by Rahul Vigneswaran, Marc T Law, Vineeth N Balasubramaniam and Makarand Tapaswi
Stars: ✭ 32 (+33.33%)
Mutual labels:  nvidia
joinhider bot
Telegram bot to delete user joined messages
Stars: ✭ 20 (-16.67%)
Mutual labels:  robot
dofbot-jetson nano
Yahboom DOFBOT AI Vision Robotic Arm with ROS for Jetson NANO 4GB B01
Stars: ✭ 24 (+0%)
Mutual labels:  nvidia

Install VScode on Nvidia TX2

VScode is a nice IDE for developers. It is widely used and has many features. Even so, I struggled trying to install it, using many different solutions found in the internet.

Finally, after many searches and tries, I had success to build and install VScode in my NVidia TX2 and decided to document and share my experience. Fell free to share this document.

install image

Here are the steps I used.

1. You need install some packages

~$ sudo apt install git libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm libnss3 apt-transport-https

2. Install nodejs 10.19

~$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
~$ sudo apt install -y nodejs

# Check if nodejs installation is ok using the command
~$ nodejs -v

3. Maybe you need some additional addons: gcc, g++, make

~$ sudo apt install gcc g++ make

4. Install Yarn package manager

~$ curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
~$ 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

# check if yarn installation is ok using the command
~$ yarn --version

5. Now clone the Microsoft VS code repository

~$ git clone https://github.com/microsoft/vscode
~$ cd vscode

6. Install dependencies using yarn tool

~$ yarn

7. Now build vscode

~$ yarn run watch

# after build you will get something like this

install image

8. Launch VScode and voila!

~$ ./scripts/code.sh

install image

You will find some interesting comments in Nvidia forum

Enjoy!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].