mirror of
https://github.com/NVIDIA/dgx-spark-playbooks.git
synced 2026-04-22 18:13:52 +00:00
211 lines
7.0 KiB
Markdown
211 lines
7.0 KiB
Markdown
# VS Code
|
|
|
|
> Install and use VS Code locally or remotely
|
|
|
|
## Table of Contents
|
|
|
|
- [Overview](#overview)
|
|
- [Direct Installation](#direct-installation)
|
|
- [Access with NVIDIA Sync](#access-with-nvidia-sync)
|
|
- [Troubleshooting](#troubleshooting)
|
|
|
|
---
|
|
|
|
## Overview
|
|
|
|
## Basic idea
|
|
This walkthrough will help you set up Visual Studio Code, a full-featured IDE with extensions, an integrated terminal, and Git integration, while leveraging your DGX Spark device for development and testing. There are two different approaches for using VS Code:
|
|
|
|
* **Direct Installation**: Install the VS Code development environment directly on your ARM64-based Spark system for local development on the target hardware without remote development overhead.
|
|
|
|
* **Access with NVIDIA Sync**: Set up NVIDIA Sync to remotely connect to Spark over SSH and configure VS Code as one of your development tools.
|
|
|
|
## What you'll accomplish
|
|
You will have VS Code set up for development on your DGX Spark device with access to the system's ARM64 architecture and GPU resources. This setup enables direct code development, debugging, and execution.
|
|
|
|
## What to know before starting
|
|
You should have basic experience working with the VS Code interface and features; the approach you choose will require some additional understanding:
|
|
|
|
* **Direct Installation**:
|
|
* Familiarity with package management on Linux systems
|
|
* Understanding of file permissions and authentication on Linux
|
|
|
|
* **Access with NVIDIA Sync**:
|
|
* Familiarity with SSH concepts
|
|
|
|
## Prerequisites
|
|
Your DGX Spark [device is set up](https://docs.nvidia.com/dgx/dgx-spark/first-boot.html). You will also need the following:
|
|
|
|
* **Direct Installation**:
|
|
* DGX Spark set up with administrative privileges
|
|
* Active internet connection for downloading the VS Code installer
|
|
|
|
* **Access with NVIDIA Sync**:
|
|
* VS Code installed on your laptop, downloaded from https://code.visualstudio.com/download.
|
|
|
|
## Time & risk
|
|
|
|
* **Duration:** 10-15 minutes
|
|
* **Risk level:** Low - installation uses official packages with standard rollback
|
|
* **Rollback:** Standard package removal via system package manager
|
|
* **Last Updated:** 11/21/2025
|
|
* Clarify options and minor copyedits
|
|
|
|
## Direct Installation
|
|
|
|
## Step 1. Verify system requirements
|
|
|
|
Before installing VS Code, confirm your DGX Spark system meets the requirements and has GUI support.
|
|
|
|
```bash
|
|
## Verify ARM64 architecture
|
|
uname -m
|
|
## Expected output: aarch64
|
|
|
|
## Check available disk space (VS Code requires ~200MB)
|
|
df -h /
|
|
|
|
## Verify desktop environment is running
|
|
ps aux | grep -E "(gnome|kde|xfce)"
|
|
|
|
## Verify GUI desktop environment is available
|
|
echo $DISPLAY
|
|
## Should return display information like :0 or :10.0
|
|
```
|
|
|
|
## Step 2. Download VS Code ARM64 installer
|
|
|
|
Navigate to the VS Code [download](https://code.visualstudio.com/download) page and download the appropriate ARM64 `.deb` package for your system.
|
|
|
|
Alternatively, you can download the installer with this command:
|
|
|
|
```bash
|
|
wget https://code.visualstudio.com/sha/download?build=stable\&os=linux-deb-arm64 -O vscode-arm64.deb
|
|
```
|
|
|
|
## Step 3. Install VS Code package
|
|
|
|
Install the downloaded package using the system package manager.
|
|
|
|
You can click on the installer file directly or use the command line.
|
|
|
|
```bash
|
|
## Install the downloaded .deb package
|
|
sudo dpkg -i vscode-arm64.deb
|
|
|
|
## Fix any dependency issues if they occur
|
|
sudo apt-get install -f
|
|
```
|
|
|
|
## Step 4. Verify installation
|
|
|
|
Confirm the VS Code app is installed successfully and can launch.
|
|
|
|
You can open the app directly from the list of applications or use the command line.
|
|
|
|
```bash
|
|
## Check if VS Code is installed
|
|
which code
|
|
|
|
## Verify version
|
|
code --version
|
|
|
|
## Test launch (will open VS Code GUI)
|
|
code &
|
|
```
|
|
|
|
VS Code should launch and display the welcome screen.
|
|
|
|
## Step 5. Configure for Spark development
|
|
|
|
Set up VS Code for development on the DGX Spark platform.
|
|
|
|
```bash
|
|
## Launch VS Code if not already running
|
|
code
|
|
|
|
## Or create a new project directory and open it
|
|
mkdir ~/spark-dev-workspace
|
|
cd ~/spark-dev-workspace
|
|
code .
|
|
```
|
|
|
|
From within VS Code:
|
|
|
|
* Open **File** > **Preferences** > **Settings**
|
|
* Search for "terminal integrated shell" to configure default terminal
|
|
* Install recommended extensions via **Extensions** tab (left sidebar)
|
|
|
|
## Step 6. Validate setup and test functionality
|
|
|
|
Test core VS Code functionality to ensure proper operation on ARM64.
|
|
|
|
Create a test file:
|
|
```bash
|
|
## Create test directory and file
|
|
mkdir ~/vscode-test
|
|
cd ~/vscode-test
|
|
echo 'print("Hello from DGX Spark!")' > test.py
|
|
code test.py
|
|
```
|
|
|
|
Within VS Code:
|
|
* Verify syntax highlighting works
|
|
* Open integrated terminal (**Terminal** > **New Terminal**)
|
|
* Run the test script: `python3 test.py`
|
|
* Test Git integration by running `git status` in the terminal
|
|
|
|
## Step 8. Uninstalling VS Code
|
|
|
|
> [!WARNING]
|
|
> Uninstalling VS Code will remove all user settings and extensions.
|
|
|
|
To remove VS Code if needed:
|
|
```bash
|
|
## Remove VS Code package
|
|
sudo apt-get remove code
|
|
|
|
## Remove configuration files (optional)
|
|
rm -rf ~/.config/Code
|
|
rm -rf ~/.vscode
|
|
```
|
|
|
|
## Access with NVIDIA Sync
|
|
|
|
## Step 1. Install and configure NVIDIA Sync
|
|
|
|
Follow the [NVIDIA Sync setup guide](https://build.nvidia.com/spark/connect-to-your-spark/sync) to:
|
|
- Install NVIDIA Sync for your operating system
|
|
- Configure which development tools you want to use (VS Code, Cursor, Terminal, etc.)
|
|
- Add your DGX Spark device by providing its hostname/IP and credentials
|
|
|
|
NVIDIA Sync will automatically configure SSH key-based authentication for secure, password-free access.
|
|
|
|
## Step 2. Launch VS Code through NVIDIA Sync
|
|
|
|
- Click the NVIDIA Sync icon in your system tray/taskbar
|
|
- Ensure your device is connected (click "Connect" if needed)
|
|
- Click on "VS Code" to launch it with an automatic SSH connection to your DGX Spark
|
|
- Wait for the remote connection to be established (your local machine may ask for a password or to authorize the connection)
|
|
- You may be prompted to "trust the authors of the files in this folder" when you first land in the home directory after a successful SSH connection
|
|
|
|
## Step 3. Validation and follow-ups
|
|
|
|
- Verify that you can access your DGX Spark's filesystem with VS Code as a text editor
|
|
- Open the integrated terminal in VS Code and run test commands like `hostnamectl` and `whoami` to ensure you are remotely accessing your DGX Spark
|
|
- Navigate to a specific file path or directory and start editing/writing files
|
|
- Install VS Code extensions for your development workflow (Python, Docker, GitLens, etc.)
|
|
- Clone repositories from GitHub or other version control systems
|
|
- Configure and locally host an LLM code assistant if desired
|
|
|
|
## Troubleshooting
|
|
|
|
| Symptom | Cause | Fix |
|
|
|---------|-------|-----|
|
|
| `dpkg: dependency problems` during install | Missing dependencies | Run `sudo apt-get install -f` |
|
|
| VS Code won't launch with GUI error | No display server/X11 | Verify GUI desktop is running: `echo $DISPLAY` |
|
|
| Extensions fail to install | Network connectivity or ARM64 compatibility | Check internet connection, verify extension ARM64 support |
|
|
|
|
|
|
For latest known issues, please review the [DGX Spark User Guide](https://docs.nvidia.com/dgx/dgx-spark/known-issues.html).
|