Hello,
I just installed browserify via sudo npm install -g browserify but when I run
The terminal answer but browserify : command not found
Can someone explain to me what I did wrong ?
Thank you in advance,
Your npm configuration must not be installing bin scripts into a location in your $PATH. Make sure that npm config get prefix/bin is in your $PATH.
@substack You are my hero. I've been searching for an answer to this for two days.
Most helpful comment
Your npm configuration must not be installing bin scripts into a location in your $PATH. Make sure that
npm config get prefix/bin is in your $PATH.