Reputation: 93
I have problems with the following command: vagrant box add laravel/homestead -–box-version 0.2.7 I installed vagrant 1.7.4 and while trying the command above i have the following error: An invalid option was specified.
When I try this command(without the version): vagrant box add laravel/homestead I have the following error: box: Loading metadata for box 'laravel/homestead' box: URL: https://atlas.hashicorp.com/laravel/homestead Vagrant is attempting to interface with the UI in a way that requires a TTY. Most actions in Vagrant that require a TTY have configuration switches to disable this requirement. Please do that or run Vagrant with TTY.
Please, help me. Thanks
Upvotes: 1
Views: 5064
Reputation: 53703
The correct syntax is
vagrant box add --box-version 0.2.7 laravel/homestead
or
vagrant box add --box-version 0.2.7 laravel/homestead --provider virtualbox
to download vagrant box for virtualbox
When running so, you might still face your 2nd issue, there has been issue reported against vagrant 1.7.4 with potential fixes (some say it works, others not)
I will suggest you use latest version of the product which is as of today vagrant 1.8.1, it should fix your issue about the TTY.
Upvotes: 6