Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall Qt Creator on Mac Yosemite

I have tried this but when I do, the terminal ask me for password. I don't know what this password is? I don't have any password on my mac, i don't enter any password when I login and I can't get passed the first step below.

sudo QtSDK/SDKMaintenanceTool.app/Contents/MacOS/SDKMaintenanceTool

I am uninstalling Qt Creator 2.8.1 on Mac OS Yosemite 10.10 I just want to install the latest 5.3.2 version and get rid of the old one. I could probably choose a new folder but I don't want to do that and it doesn't let me install over the current folder.

like image 986
zar Avatar asked Nov 05 '14 05:11

zar


People also ask

Where is Qt Creator installed Mac?

On Max OS X, the default install from Qt Disk Image installs to the user's home directory (/Users/ whoami ). This creates thousands of files show up in the Mac OS Finder. I've managed to install to /usr/local/Qt. However, the only way to launch Qt Creator is from the Terminal.

Is Qt compatible with Mac?

Instead, macOS uses its own native windowing system that is accessible through the Cocoa API. To download and install Qt for macOS, follow the instructions on the Getting Started with Qt page. To build Qt from source, see Qt for macOS - Building from Source.


2 Answers

I figured it out. Basically I was not able to locate the file because it never shows up in finder but here is how to get there.

From 'Go' menu on Finder, select 'Go to Folder'

Type ~/Library

This will take you to file system. I had two folders related to Qt (Qt and Qt 5.1). Both folders had MaintenanceTool file in it which I run and it asks if you want to uninstall and select yes. This will uninstall Qt Creator and all its components.

Update

Like aksiksi noted in comment below, it maybe installed in root folder for new versions. To go there type / in 'Go to Folder' dialog and look for Qt installation there.

like image 192
zar Avatar answered Sep 17 '22 00:09

zar


Remove the main Qt directory. If you installed it somewhere else, delete that one instead

rm -rf ~/Qt

Then here are the directories with "Qt" in the name that I found on my system

rm -rf ~/Library/Application\ Support/Qt
rm -rf ~/Library/Caches/QtProject
rm -rf ~/.config/QtProject
like image 44
Boris Avatar answered Sep 21 '22 00:09

Boris