Vagrant with VirtualBox on Windows10: “Rsync” could not be found on your PATH

后端 未结 8 1892
情深已故
情深已故 2021-01-29 20:21

I\'ve used Vagrant for a while on a windows 7 system. Now I\'ve a new PC with windows 10. I installed Oracle Virtual Box and Vagrant and I try to start a machine with the comman

8条回答
  •  礼貌的吻别
    2021-01-29 21:12

    I was able to fix this problen using another bos from C:\Users{your_username}.vagrant.d\boxes\box\subfolder\virtualbox\Vagrantfile

    And adding

    # Load include vagrant file if it exists after the auto-generated
    # so it can override any of the settings
    
    include_vagrantfile = File.expand_path("../include/_Vagrantfile", __FILE__)
    
    load include_vagrantfile if File.exist?(include_vagrantfile)
    

提交回复
热议问题