使用VS code 配置远程调试时可能报错
An SSH installation couldn't be found
,本文记录解决方案。
问题复现
安装 remote 插件连接远程主机时报错:
问题原因
- 没有安装 ssh 工具
- 没有将 ssh 添加到系统路径
解决方案
- 安装 git bash
https://gitforwindows.org/
- 安装好后在 gitbash 中可以使用ssh命令,但是外部 cmd 不可以
$ ssh -V
OpenSSH_8.5p1, OpenSSL 1.1.1k 25 Mar 2021
- 将ssh添加到系统路径
- 可以在 git bash 中查看ssh的位置
$ where ssh
E:Program FilesGitusrbinssh.exe
- 将
E:Program FilesGitusrbin
添加到系统 path 中 - 使得在 cmd 中可以访问 ssh
- 此时再使用 VS code 访问远程主机就不会报ssh找不到的错误了
参考资料
- https://blog.csdn.net/weixin_43425561/article/details/108565718