Vagrantを実行しようとしていますが、vagrant up
エラーが表示された後:
No usable default provider could be found for your system.
Vagrant relies on interactions with 3rd party systems, known as
"providers", to provide Vagrant with resources to run development
environments. Examples are VirtualBox, VMware, Hyper-V.
The easiest solution to this message is to install VirtualBox, which
is available for free on all major platforms.
If you believe you already have a provider available, make sure it
is properly installed and configured. You can see more details about
why a particular provider isn't working by forcing usage with
`vagrant up --provider=PROVIDER`, which should give you a more specific
error message for that particular provider.
VirtualBoxバージョン4.3.26 r989888およびLinux Ubuntu(64ビット)より前にインストールした
後:vagrant box add precise32 http://files.vagrantup.com/precise32.box
==> box: Adding box 'precise32' (v0) for provider: box: Downloading: http://files.vagrantup.com/precise32.box box: Progress: 100% (Rate: 1425k/s, Estimated time remaining: --:--:--) ==> box: Successfully added box 'precise32' (v0) for 'virtualbox'!
vagrant box list
をリストするとき
lucid32 (virtualbox, 0)
precise32 (virtualbox, 0)
「プロバイダー」の何が問題なのか
vagrant package --base vagrant-ubuntu64
Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
this to be available on the PATH. If VirtualBox is installed, please find the
`VBoxManage` binary and add it to the PATH environmental variable.
VirtualBoxを検出する方法
クイックノート-Vagrant 1.8.4とVirtualbox 5.1.Xは、MacOS 10.11では互換性がありません(プロバイダーを設定できません)。
Virtualbox 5.0.10は問題なく動作します。
Vagrantの最新バージョン(この記事の執筆時点では1.7.4)をインストールするだけで、これを修正できました。
VirtualBox 4.3.12以降に issue が報告されたようです:
VirtualBoxは、次の環境変数VBOX_MSI_INSTALL_PATH
を自動的に作成します
ただし、vagrant(base.rb
ファイルを探す場合)は変数VBOX_INSTALL_PATH
を使用します
したがって、次のことができます-変数名VBOX_MSI_INSTALL_PATH
を更新してVBOX_INSTALL_PATH
に変更します-VBOX_INSTALL_PATH
と同じ値で新しい変数名VBOX_MSI_INSTALL_PATH
を作成します
リマインダーは、My Computer (right click) --> Properties --> Advanced System Settings --> Environment Variables
に移動し、管理する必要のある変数を探します
わかりましたので、Windows、Vagrant、VirtualBoxで同じ問題が発生していました。
クレジットはここに行きます: https://github.com/mitchellh/vagrant/issues/3852
私は、virtualbox実行可能ファイルへの「パス」を必要とする環境変数(またはLinuxユーザーの場合はPATHと思う)があると想定しています。
MacOS 10.12を実行しており、homebrewを使用してvagrant 5.1をインストールしています。
OPと同じエラーが発生し、VirtualBoxの最新バージョン(v5.1.6)をダウンロードして修正しました。
N.B.このバージョンには ダウンロードページ でAMD64というラベルが付いています。これは64ビット標準の単なる名前であり、Intel Macには問題なくインストールされます。