Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am trying to install eas cli and am getting the error: zsh: command not found: eas

I am in the root folder and type:

yarn global add eas-cli

I then get:

yarn global v1.22.19
warning ../../package.json: No license field
[1/4] 🔍  Resolving packages...
[2/4] 🚚  Fetching packages...
[3/4] 🔗  Linking dependencies...
[4/4] 🔨  Building fresh packages...
success Installed "[email protected]" with binaries:

Then I go to use eas by typing eas login and I get:

zsh: command not found: eas
like image 586
ttsssss Avatar asked Sep 14 '25 09:09

ttsssss


1 Answers

For some reason yarn does not add it to commands, might be a path issue, set-up issue with yarn.

using npm it worked fine

npm install -g eas-cli
like image 198
Simon Hudec Avatar answered Sep 16 '25 10:09

Simon Hudec