我同时为WSL安装了Ubuntu和Debian。当我使用VS Code remote development打开WSL工作区时,它将始终打开Ubuntu。如何在VS Code中使用WSL在Debian安装下打开工作区?
答案 0 :(得分:1)
VS代码Remote - WSL extension始终使用默认的WSL发行版。您可以使用wsl
command(在Windows早期版本中为wslconfig
)来更改默认发行版:
# List the available distributions
wsl --list
# Set the default version to debian
wsl --setdefault debian
更改WSL的默认设置后,请确保重新启动VS Code
答案 1 :(得分:1)