How can i fix that problem?
minikube start
-bash: /home/linuxbrew/.linuxbrew/bin/minikube: Bad address
either i use ubuntu
How can i fix that problem?
minikube start
-bash: /home/linuxbrew/.linuxbrew/bin/minikube: Bad address
either i use ubuntu
Most probably minikube is not installed to setup correctly in your bash PATH variable for its binary
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
echo 'export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"' >> ~/.profile
source ~/.profile
got it i fix that problem thanks