2

I have uninstalled minikube through this post and now every time I open the terminal this message appears:

kubectl: command not found

Command 'minikube' not found, did you mean:

  command 'minitube' from deb minitube

Try: sudo apt install <deb name>

I have no idea what is going on. Can someone help me to stop this message from appearing?

Michael Pacheco
  • 948
  • 1
  • 17
  • 25

1 Answers1

4

You probably have entries in your ~/.bashrc file that are both calling minikube or/and kubectl. Just edit/remove those entries. For example:

vi ~/.bashrc

In the vi editor:

/kubectl
dd
/minikube
dd
:wq
Rico
  • 58,485
  • 12
  • 111
  • 141