After I install the apigeetool on my mac I receive an error when I try to run the command. Has anybody else seen this behavior?

3324-screen-shot-2016-08-08-at-90155-pm.png

0 1 152
1 REPLY 1

This is a PATH issue. Hope you used npm -g install apigeetool to install it. If so,

npm config get prefix

will tell you where it is installed. Typically it is /usr/local. If so, the following will set the PATH for your terminal session.

export PATH=${PATH}:/usr/local/bin

You can add it to ~/.bashrc to make it work for every terminal window.