Error when trying vagrant up

前端 未结 23 2445
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 17:34

I\'m using Vagrant for my environment and I\'ve got a little issue:

$vagrant up

Bringing machine \'default\' up with \'virtualbox\' provider...
==> defau         


        
23条回答
  •  眼角桃花
    2020-11-30 17:48

    This happened due to having a vagrant file without a defined box name. this happen when you running vagrant init with out a box name parameter.

    So you have to delete the Vagrant file then

    vagrant init box-title
    vagrant up
    

    I hope this could help!

提交回复
热议问题