up up up
Nov 28, 2014
23
Level 7
zsh: command not found: homestead
Hi everyone,
I am trying to install Homestead 2.0.
Following Jeffrey's guidelines and the docs I did the
composer global require "laravel/homestead=~2.0"
export PATH="~/.composer/vendor/bin/"
I even add it to my .zshrc file, but I get the same error.
When I try to run it, it says:
zsh: command not found: homestead
I'm using oh-my-zsh, have Composer installed.
I get the same with
composer global require "laravel/installer=~1.1"
What am I doing wrong here?
Level 22
Instead of this
export PATH="~/.composer/vendor/bin/"
I believe you really wanted this - append to path you already have
PATH=~/.composer/vendor/bin:$PATH
20 likes
Please or to participate in this conversation.