windows - Vagrant, error in vagrant up --provider=vmware_workstation. VMware version mismatch -
i wanted vagrant --provider=vmware_workstation
. however, error has occurred.
$ vagrant --version vagrant 1.8.7 $ vagrant plugin install vagrant-vmware-workstation installed plugin 'vagrant-vmware-workstation (4.0.14)'! $ vagrant plugin license vagrant-vmware-workstation c:/license.lic installing license 'vagrant-vmware-workstation'... license 'vagrant-vmware-workstation' installed! $ vagrant --provider=vmware_workstation bringing machine 'default' 'vmware_workstation' provider... provider works vmware workstation 9.x, 10.x, 11.x, , 12.x. have workstation ''. please install proper version of vmware workstation , try again.
i used vagrantfile:
# vagrantfile api/syntax version. don't touch unless know you're doing! vagrantfile_api_version = "2" vagrant.configure(vagrantfile_api_version) |config| config.vm.box = "vmware_precise64" config.vm.provider "vmware_workstation" |v| v.gui = true end end
i use version of vmware:
list of things i've tried.
- reinstall vagrant.
- reinstall vmware.
you not have vmware workstation (pro) installed , vagrant reports error.
you using free vmware workstation player not supported:
can use vmware workstation player?
some features of vagrant vmware workstation plugin work vmware player, not officially supported. vagrant interacts vmware via vmware api, , versions of vmware workstation player not support apis. when in doubt, please purchase vmware workstation pro use features supported integration.
Comments
Post a Comment