I've seen other posts with this issue (cf : "exp: command not found" How do I add expo cli to path?)
But still i cannot resolve this issue...
here is a screenshot of my config.
Please someone have a solution? of maybe i did bad ?
Thanks a lot :)
I've seen other posts with this issue (cf : "exp: command not found" How do I add expo cli to path?)
But still i cannot resolve this issue...
here is a screenshot of my config.
Please someone have a solution? of maybe i did bad ?
Thanks a lot :)
Seems you are using ZSH, in this case you need to configure your path in ~/.zshrc
file and not in the .bash_profile
that only will be load by bash
echo 'export PATH=$PATH:$HOME/.npm-global/bin' >> ~/.zshrc
and then reload the config with source .zshrc
.