What's the cleanest way to remove Homestead and Vagrant from a Windows system?

后端 未结 3 1762
陌清茗
陌清茗 2021-02-01 04:05

I followed the instructions in Laravel docs to install Vagrant and Homestead on Windows 10, but now I\'ve decided to move the whole development stuff to another dedicated server

3条回答
  •  暖寄归人
    2021-02-01 04:48

    Step 1: Get a list of all installed boxes using

    $ vagrant box list
    

    Step 2: Run vagrant remove command, specify the box name, version, and provider for example

    $ vagrant box remove laravel/homestead --box-version=0.4.4 --provider=virtualbox
    

提交回复
热议问题