51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

VS code An SSH installation couldn't be found 问题解决方案

使用VS code 配置远程调试时可能报错An SSH installation couldn't be found,本文记录解决方案。

问题复现 {#问题复现}

安装 remote 插件连接远程主机时报错:

问题原因 {#问题原因}

  1. 没有安装 ssh 工具
  2. 没有将 ssh 添加到系统路径

解决方案 {#解决方案}

  1. 安装 git bash

https://gitforwindows.org/

  • 安装好后在 gitbash 中可以使用ssh命令,但是外部 cmd 不可以
  1. 将ssh添加到系统路径
  • 可以在 git bash 中查看ssh的位置
  • E:\Program Files\Git\usr\bin 添加到系统 path 中
  • 使得在 cmd 中可以访问 ssh

  • 此时再使用 VS code 访问远程主机就不会报ssh找不到的错误了

参考资料 {#参考资料}



文章链接:
https://www.zywvvd.com/notes/environment/vs-code/vs-code-ssh-not-found/vs-code-ssh-not-found/

赞(0)
未经允许不得转载:工具盒子 » VS code An SSH installation couldn't be found 问题解决方案