Error when trying vagrant up

前端 未结 23 2520
隐瞒了意图╮
隐瞒了意图╮ 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 18:01

    I faced same issue when I ran following commands

    vagrant init
    vagrant up  
    Bringing machine 'default' up with 'virtualbox' provider...
    ==> default: Box 'base' could not be found. Attempting to find and install...
        default: Box Provider: virtualbox
        default: Box Version: >= 0
    ==> default: Box file was not detected as metadata. Adding it directly...
    ==> default: Adding box 'base' (v0) for provider: virtualbox
        default: Downloading: base
    An error occurred while downloading the remote file. The error
    message, if any, is reproduced below. Please fix this error and try
    again.
    
    Couldn't open file /home/...../base
    

    I corrected with

    >vagrant init laravel/homestead
    >Vagrant up
    

    It worked for me.

    Happy coding

提交回复
热议问题