アプリ版:「スタンプのみでお礼する」機能のリリースについて

```
vagrant up
```
を実行するも
```
The provider 'virtualbox' that was requested to back the machine
'firstuser' is reporting that it isn't usable on this system. The
reason is shown below:

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.

```
上記エラーです。
環境変数PATHの設定がないためと思い、.bashrファイルに、
```
export PATH="$PATH:/opt/vagrant/bin/vagrant"
```
と記載して保存しましたが、同様のエラーです。
環境pathの通し方は、合っていますでしょうか。

```
echo $PATH

```
で、該当のPATHは、出てきませんでした。

A 回答 (1件)

.bashrc に下記を追加します。



export PATH=$PATH:/opt/vagrant/bin


次回ログイン時から有効です。即時反映は下記コマンドを実行します。

source ~/.bashrc
    • good
    • 0

お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!