Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to uninstall Qt5

Somehow I ended up with 2 versions of Qt on my Ubuntu 14.04 LTS machine, Qt4 and Qt5. Here is the output of qtchooser -list-versions

4
5
config
default
qt4-i386-linux-gnu
qt4-x86_64-linux-gnu
qt4
qt5-x86_64-linux-gnu
qt5

How do I remove Qt5?

like image 241
flashburn Avatar asked Sep 21 '16 19:09

flashburn


1 Answers

If you want to remove/uninstall Qt Creator then follow this:

Open your terminal (Ctrl + Alt + T), then...

  1. To only uninstall Qt Creator:

    sudo apt-get remove qtcreator

  2. If you want to remove Qt Creator and its dependent packages as well:

    sudo apt-get remove --auto-remove qtcreator

Reference website: https://www.thelinuxfaq.com/ubuntu/ubuntu-17-04-zesty-zapus/qtcreator?type=uninstall

like image 191
j k Avatar answered Sep 26 '22 19:09

j k