Download the current version of Qt Creator:
https://download.qt.io/official_releases/qtcreator/
Open the DMG file. Drag the Qt Creator icon to the Applications shortcut located in the DMG folder.
Alternatively install homebrew :
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Then install brew cask
brew install caskroom/cask/brew-cask
After installing brew cask you can install the qt creator through this:
brew cask install qt-creator
brew cask will install the application and it will appear in the spotlight, but not in the global /Application folder, because instead a symbolic link is created to the ~/Applications folder. If you want it to appear in the global /Applications folder, you need to manually link it yourself using the following command:
sudo ln -s /opt/homebrew-cask/Caskroom/qt-creator/3.4.0/Qt\ Creator.app/ /Applications/Qt\ Creator.app
If you already have Qt Creator somewhere on your system, you can simply reference it using the previous command.
Phil hannent
source share