指定了vagrant无效选项

时间:2016-01-26 10:02:25

标签: windows command-line vagrant vagrant-windows

我正在尝试在Windows 8上运行时安装在我的笔记本电脑上。我已经下载并安装了vagrant和Virtualbox,目前我正在尝试使用

下载流浪盒
vagrant init tsawler/wafs; vagrant up --provider virtualbox

我收到此错误,

C:\Users\patrick\Documents\website>vagrant init tsawler/wafs; vagrant up --provider virtualbox
An invalid option was specified. The help for this command is available below.

Usage: vagrant init [options] [name [url]]

Options:

    -f, --force                      Overwrite existing Vagrantfile
    -m, --minimal                    Create minimal Vagrantfile (no help comment
s)
        --output FILE                Output path for the box. '-' for stdout
    -h, --help                       Print this help

我尝试在init之后添加-f--force选项,但仍然得到相同的结果。有没有丢失的设置?

2 个答案:

答案 0 :(得分:3)

有时,同一行上的多个命令可能无法正确解析,并且单独运行它们通常有效。试试这些。

C:\Users\patrick\Documents\website>vagrant init tsawler/wafs C:\Users\patrick\Documents\website>vagrant up

答案 1 :(得分:0)

以管理员权限运行命令提示符。