I'm trying to set up Confluent CLI on my mac machine, I followed instructions given here
When I try to execute confluent command later, I'm getting command not found.
Can anyone help me with what's going wrong here?
CodePudding user response:
It installed fine...
As the output says,
info: please ensure ./bin is in your PATH
Or read the docs again, where it shows
export PATH=$(pwd)/bin:$PATH
You need to edit your .zshrc
or .bashrc
to add that folder where the binary was installed to your PATH
Or use ./bin/confluent
command directly from the folder it was installed to.