I am trying to start a Vagrant box with SQL Server for local development. I am running Fedora 23. The box in question is this .
vagrant up fails with the following error message:
/usr/share/vagrant/plugins/communicators/winrm/shell.rb:9:in `require': cannot load such file
I tried installing winrm using gem install winrm and it only installs a fine, but the tramp still doesn't work.
The following ruby ββscript works without errors:
require "winrm" puts "hello world"
Does anyone know how to fix this?
source share