`ssh` executable not found in any directories in the %PATH%

前端 未结 6 1968
无人共我
无人共我 2021-01-31 09:09

ERROR:

c:\\Users\\dhawal.vora>vagrant ssh
`ssh` executable not found in any directories in the %PATH% variable. Is an
SSH client installed? Try installing Cyg         


        
6条回答
  •  不知归路
    2021-01-31 09:44

    Adding C:\Program Files\Git\usr\bin to the PATH environment variable.

    Add it manually or I believe you could run this in cmd:

    set PATH=%PATH%;C:\Program Files\Git\usr\bin
    

    updated from @Ygor Thomaz's comments

    or (64 bits)

    set PATH=%PATH%;C:\Program Files\Git\usr\bin 
    

    If this doesn't fix your problem, go through :

    Get SSH working on Vagrant/Windows/Git

提交回复
热议问题