1

我尝试从 apt repo 和 gem 安装 vagrant,但这是我尝试运行时得到的输出vagrant plugin install(输出中显然没有插件命令):

Usage: vagrant [-v] [-h] command [<args>]

    -v, --version                    Print the version and exit.
    -h, --help                       Print this help.

 Available subcommands:
     box
     destroy
     gem
     halt
     init
     package
     provision
     reload
     resume
     ssh
     ssh-config
     status
     suspend
     up

我尝试从 apt 和 Rubygems 安装 vagrant,在这两种情况下我都没有得到插件命令。我正在运行 Ubuntu 12.04 LTS。

4

1 回答 1

2

从源代码安装 Vagrant。

github 仓库在这里:https ://github.com/mitchellh/vagrant

这些说明应该允许您构建和安装最前沿的版本:https ://github.com/mitchellh/vagrant/wiki/Installing-Vagrant-from-source

如果你想要最新的稳定版本,那么一旦你按照上面链接中的描述克隆了 repo,你应该检查 1.2.2 标签,git checkout v1.2.2然后构建它。

于 2013-05-20T14:03:55.230 回答