宅基地初始没有定义

时间:2016-01-06 21:00:27

标签: php laravel homestead

the official installation instructions of version 4.2之后安装宅基地时,我在执行$ homestead init时收到以下错误消息: error message

 [Symfony\Component\Console\Exception\CommandNotFoundException]  
  Command "init" is not defined.

我之前的步骤是使用composer global require "laravel/homestead=~3.0"

安装宅基地

我安装了Laravel Homestead version 3.0.1homestead位于PATH

2 个答案:

答案 0 :(得分:4)

嗯,我记得在我第一次安装宅基地时遇到这个问题。我可以看到您提供的链接与Laravel 4.2有关。从5.2文档中安装宅基地之后似乎对我自己很好:

Laravel Homestead: Installation & Setup

答案 1 :(得分:0)

解决方案非常简单。 确保已将其添加到bash profiel或.zshrc文件中。

function homestead() {
    ( cd ~/Homestead && vagrant $* )
}