Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove flutter on ubuntu?

I would like to remove/uninstall flutter on ubuntu (16.04). I have not found any solution on the Internet.

Thank you very much!

like image 445
Awenig Marié Avatar asked Apr 12 '18 16:04

Awenig Marié


People also ask

How do I remove flutter from Terminal Mac?

All you have to do is remove the contents of the directory where you unzipped it in. Even the path addition to be able to call the flutter command from anywhere in your system has to be done manually. If you did that, then you can remove it as well from your shell's PATH.


2 Answers

If you have installed flutter from snap, then you must execute:

sudo snap remove flutter
like image 60
Alberto Tamayo Avatar answered Sep 21 '22 20:09

Alberto Tamayo


I just deleted the folder itself. You can also reset your PATH variable (if you had previously set it to include flutter as well) so that when you run flutter doctor in your terminal, you will get command not found which means it's not there anymore

like image 22
Siddharth Avatar answered Sep 18 '22 20:09

Siddharth