I installed with wget and curl; how do I uninstall?
Heyho, it's just a single binary.
A simple sudo rm $(which k3d) will remove it for you :+1:
You can also remove it manually. The install script put the binary here: /usr/local/bin/k3d
Thanks, so then 'everything' is gone as it is a container with k3s in it, right!?
So k3d is a binary/executable that spawns docker containers which run k3s.
Those spawned containers you can either delete by running k3d delete -a which deletes everything that k3d created or via docker commands.
Then the k3d executable you delete as described in the last reply.
I'll just go ahead and close this one :+1:
Anyway, please don't hesitate to still comment here, if you have more questions.
You might also be interested in joining us in Slack: https://rancher-users.slack.com
thanks
Most helpful comment
Heyho, it's just a single binary.
A simple
sudo rm $(which k3d)will remove it for you :+1: