如何在 VS Code 中为不同的发行版打开 wsl 工作区?

How do I open a wsl workspace in VS Code for a different distro?

我为 WSL 安装了 Ubuntu 和 Debian。当我使用 VS Code remote development 打开 WSL 工作区时,它总是打开 Ubuntu。如何在 VS Code 中使用 WSL 打开 Debian 安装下的工作区?

VS Code Remote - WSL extension always uses the default WSL distro. You can change the default distro using the wsl commandwslconfig 早期 windows 版本):

# List the available distributions
wsl --list

# Set the default version to debian
wsl --setdefault debian

更改 WSL 的默认设置后,确保重新启动 VS Code

点击左下方的"remote button"

选择New Window using Distro...

选择你的发行版!