After you changed your ~/.zshrc
file to include ~/.composer/vendor/bin
in $PATH
, did you do source ~/.zshrc
or exit the terminal and reopen it?
Hi @nesl247, yes I tried that without any luck. I really don't understand what's going on...
nesl247 said:
After you changed your
~/.zshrc
file to include~/.composer/vendor/bin
in$PATH
, did you dosource ~/.zshrc
or exit the terminal and reopen it?
Same problem here. Does anyone have an idea how to solve this? :(
I've solved this. The problem was that the "~" alias is not being expanded in .zshrc or .bash_profile.
It can be fixed by entering the complete path (eg. /Users/sebastian/.... ) or by using the $HOME env var:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:$HOME/.composer/vendor/bin/
Thanks to the gods of the Googlez, I found your answer and you saved me a few hours of fiddling out!
Thank You!
@>sveggiani said:
I've solved this. The problem was that the "~" alias is not being expanded in .zshrc or .bash_profile.
It can be fixed by entering the complete path (eg. /Users/sebastian/.... ) or by using the $HOME env var:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:$HOME/.composer/vendor/bin/
Thanks ever so much
sveggiani said:
I've solved this. The problem was that the "~" alias is not being expanded in .zshrc or .bash_profile.
It can be fixed by entering the complete path (eg. /Users/sebastian/.... ) or by using the $HOME env var:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:$HOME/.composer/vendor/bin/
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community