Many thanks for your great tool!
I still had an issue getting this running on Windows 8. I had to change the 'get_vagrant_executable' function in C:\Pythonxx\Lib\site-packages\vagrant__init__.py to:
def get_vagrant_executable():
if (which('vagrant') is not None):
if (os.name == 'nt'):
return 'vagrant'
else:
return which('vagrant')
else:
return None
Can you include a solution to this in further versions?