Ubuntu – How to uninstall Android Studio from Ubuntu 14.04 by using Terminal

14.04android-studio

I installed Android Studio from here from terminal.How to uninstall it completely ?

There are previous questions in Ubuntu with same title but none explained correct answer!(One question Explained to uninstall when downloaded tar file but not for terminal download)

Best Answer

If you installed the .deb file then you can remove it using

sudo dpkg --remove android-studio

Or if you installed it via apt-get then you can remove it using

sudo apt-get remove android-studio

Have a read of How can I uninstall software? for more details.

Related Question