我在 WSL 中使用 Visual Code Studio 中的 shell 时遇到了问题

我在 WSL 中使用 Visual Code Studio 中的 shell 时遇到了问题

我是 Visual Code Studio 用户。我曾经在 Visual Studio Code 中使用过 CMD 默认 shell,但几天前我放弃了 ubuntu。因此,我也将 Visual Studio Code 默认 shell 替换为 ubuntu(wsl)。问题是,当我尝试运行脚本时,它会写入:-bash: C:/Program Files/Python310/python.exe: No such file or directory。顺便说一下,我是 Python 语言用户。

答案1

您不需要 WSL 即可访问 Visual Studio Code 中的 bash shell。最常用的方法是在 Windows 中安装 git-bash 应用程序和 Visual Studio Code,然后您可以从 Visual Studio Code 访问 Windows 中已安装的所有 Python 文件,并在 Windows 中的 Visual Studio Code 中使用 bash shell。

启动 git-bashVisual Studio Code 扩展为 VSCode 添加了两个“bash”命令,允许您在当前文件的文件夹或工作区的根文件夹中启动 git-bash。打开您喜欢的浏览器,然后单击以下链接访问 Git Bash 下载页面:Git 下载页面。页面加载后,点击下载 Windows 版本按钮。

插件提供了两个命令:

  • bash将在当前文件的目录中打开 bash。
  • bash in workspace无论打开什么文件,都会始终在根工作区目录中打开 bash。

只需按 F1,然后输入上述任意命令即可启动 git-bash.exe。

请注意,您需要在环境路径上拥有 git-bash.exe。

相关内容