在the official installation instructions of version 4.2之后安装宅基地时,我在执行$ homestead init
时收到以下错误消息:
即
[Symfony\Component\Console\Exception\CommandNotFoundException]
Command "init" is not defined.
我之前的步骤是使用composer global require "laravel/homestead=~3.0"
我安装了Laravel Homestead version 3.0.1
,homestead
位于PATH
。
答案 0 :(得分:4)
嗯,我记得在我第一次安装宅基地时遇到这个问题。我可以看到您提供的链接与Laravel 4.2有关。从5.2文档中安装宅基地之后似乎对我自己很好:
答案 1 :(得分:0)
解决方案非常简单。 确保已将其添加到bash profiel或.zshrc文件中。
function homestead() {
( cd ~/Homestead && vagrant $* )
}