I've installed zsh with homebrew and changed my shell to it. I'm having a problem when trying to run the gulp
command, which worked before I changed the shell to zsh.
zsh: command not found: gulp
A bit of research leaves me to believe it has something to do with my PATH. My PATH looks like this is my .zshrc
file.
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
I want to say I installed node with brew. How can I use gulp with zsh without changing back to the default shell?
Any help is appreciated. Thanks in advance!
gulp
binary? Trywhereis gulp
in your old shell and see if that path is in yourPATH
variable. – Mccrawwhereis gulp
doesn't return anything. Butwhich gulp
returns this:/Users/realph/.node/bin/gulp
. – Dopey$HOME/.node/bin
to your path. – Mccraw.zshrc
file? – Dopey