1

Windows 8 で実行中にラップトップにインストールしようとしています。 vagrant と Virtualbox をダウンロードしてインストールし、現在 vagrant box を使用してダウンロードしようとしています。

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

-forオプションを init の後に追加しようとしまし--forceたが、それでも同じ結果が得られます。欠けている設定はありますか?

4

2 に答える 2

3

場合によっては、同じ行にある複数のコマンドが正しく解析されないことがありますが、通常は別々に実行するとうまくいきます。これらを試してみてください。

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

于 2016-01-27T19:22:46.217 に答える