Minikube start -bash: /home/linuxbrew/.linuxbrew/bin/minikube: Bad address

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

  1. Reinstall minikube (if not done already)
  2. Fix path for 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

1 Like