eas-cli installed correctly, but then not recognized on mac

Hi everyone,
We installed the eas-cli on mac, it runs and it installs, but then when trying to run any eas commands it says it’s not recognized, it works fine on windows but can;t seem to figure it out on mac

Any help would be appreciated

Thank you

SOLVED - With @wodin solution and also How to add a path .

Hi @pedro-goncal

I assume you installed it globally with npm?

I believe that npm’s bin directory is not in your PATH.

Run the following to see where that directory is:

npm bin -g

Then add that directory to your PATH.

e.g. I installed node with Homebrew. I use the ZSH shell. I have the following in .zprofile and that sets the PATH amongst other things:

eval "$(/opt/homebrew/bin/brew shellenv)"
1 Like

Hi @wodin
Thank you so much for your help, that fixed the problem

I also followed this Add to the PATH on Mac OS X 10.8 Mountain Lion and up | Architect Ryan to add the path and it works perfectly

Again thank you for you help and prompt response

1 Like

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.