我在Windows 10上安装了Ubuntu App,我想将它用作VS Code中的终端。我看到VS Code会自动检测Git Bash,PowerShell,Cmd.exe等选项,并提供将它们用作终端的选项。但我想使用Ubuntu。有可能吗?
答案 0 :(得分:0)
对于专门使用Ubuntu发行版,您只需键入一个简单命令即可将wsl使用的默认发行版更改为ubuntu。
在cmd中输入wslconfig /setdefault Ubuntu
即可。
然后在我的电脑中,vscode给了我选择我想要使用的终端,所以我选择了wsl bash,因此它在Preferences->设置中编辑了用户设置"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\bash.exe"
。以上代码会覆盖默认设置。
您的电脑可能有不同的路径,因此请参阅stackoverflow link to configure vscode for wsl as terminal
您还可以参考wsl配置https://docs.microsoft.com/en-us/windows/wsl/wsl-config
的微软链接您可以参考similar question as yours for ubuntu and multiple distros