我输入vagrant时出错:Gem :: Requirement :: BadRequirementError

时间:2017-06-05 20:22:22

标签: ruby vagrant vagrantfile

我在Vagrant上仍然太绿了,而且我不知道如何解决这个错误,当我尝试做什么时,我会得到"流浪汉":

/opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/requirement.rb:89:in `parse': Illformed requirement ["puphpet/ubuntu1604-x64"] (Gem::Requirement::BadRequirementError)
    from /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/requirement.rb:119:in `block in initialize'
    from /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/requirement.rb:119:in `map!'
    from /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/requirement.rb:119:in `initialize'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/box_collection.rb:268:in `new'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/box_collection.rb:268:in `block in find'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/box_collection.rb:267:in `map'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/box_collection.rb:267:in `find'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/vagrantfile.rb:167:in `block in machine_config'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/vagrantfile.rb:200:in `call'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/vagrantfile.rb:200:in `machine_config'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/vagrantfile.rb:45:in `machine'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/environment.rb:669:in `machine'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/command.rb:177:in `block in with_target_vms'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/command.rb:201:in `call'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/command.rb:201:in `block in with_target_vms'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/command.rb:183:in `each'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/command.rb:183:in `with_target_vms'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/up/command.rb:131:in `install_providers'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/up/command.rb:85:in `execute'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/cli.rb:42:in `execute'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/environment.rb:308:in `cli'
    from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/bin/vagrant:138:in `<main>'

这是此目录中的Vagrantfile:

# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  # The most common configuration options are documented and commented below.
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://atlas.hashicorp.com/search.
  config.vm.box = "base"
  config.vm.box_version = "puphpet/ubuntu1604-x64"

  # Disable automatic box update checking. If you disable this, then
  # boxes will only be checked for updates when the user runs
  # `vagrant box outdated`. This is not recommended.
  # config.vm.box_check_update = false

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  config.vm.network "myownnetwork", guest: 80, host: 8080

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  config.vm.network "myownnetwork", ip: "192.168.33.10"

  # Create a public network, which generally matched to bridged network.
  # Bridged networks make the machine appear as another physical device on
  # your network.
  # config.vm.network "public_network"

  # Share an additional folder to the guest VM. The first argument is
  # the path on the host to the actual folder. The second argument is
  # the path on the guest to mount the folder. And the optional third
  # argument is a set of non-required options.
  # config.vm.synced_folder "../data", "/vagrant_data"

  # Provider-specific configuration so you can fine-tune various
  # backing providers for Vagrant. These expose provider-specific options.
  # Example for VirtualBox:
  #
  # config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
  #   vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
  #   vb.memory = "1024"
  # end
  #
  # View the documentation for the provider you are using for more
  # information on available options.

  # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
  # such as FTP and Heroku are also available. See the documentation at
  # https://docs.vagrantup.com/v2/push/atlas.html for more information.
  # config.push.define "atlas" do |push|
  #   push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
  # end

  # Enable provisioning with a shell script. Additional provisioners such as
  # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
  # documentation for more information about their specific syntax and use.
  # config.vm.provision "shell", inline: <<-SHELL
  #   apt-get update
  #   apt-get install -y apache2
  # SHELL
end

如你所见,我选择了一个我已用puphpet创建的盒子,名为&#34; puphpet / ubuntu1604-x64&#34;,但我也尝试过我已安装的laravel Homestead盒子。这是我的可用框列表(流浪盒列表):

hashicorp/precise32    (virtualbox, 1.0.0)
laravel/homestead      (virtualbox, 2.0.0)
puphpet/ubuntu1604-x64 (virtualbox, 20161102)

我在Vagrantfile中编辑的只是取消注释网络线路,并为网络提供自定义名称。盒子线已经取消注释,因为我这样做了:

vagrant init --box-version laravel/homestead

我后来改变了puphpet / ubuntu1604-x64的laravel盒只是为了试一试,结果相同。

任何帮助?

1 个答案:

答案 0 :(得分:2)

您感到困惑config.vm.boxconfig.vm.box_version

你可以选择

config.vm.box = "puphpet/ubuntu1604-x64"

但如果您确实需要为此框指定版本,则可以使用版本参数指示。您可以在doc

的这一部分中详细了解box_version
config.vm.box_version = "20161102"