Error: qt@5.5: unknown version :mountain_lion

不羁岁月 提交于 2019-12-03 08:17:29

问题


Followed this tutorial in installing qt5.5 on a macOS version 10.13.6 High Sierra. Failed when trying to brew install qt@5.5 giving me an error below:

Error: qt@5.5: unknown version :mountain_lion

Versions:

  • brew
    Homebrew 2.0.0
    Homebrew/homebrew-core (git revision 175af; last commit 2019-02-02)
    Homebrew/homebrew-cask (git revision 05a81; last commit 2019-02-02)

  • macOS version 10.13.6 High Sierra

any help?


回答1:


Referring to the tutorial, the following steps are executed to install qt@5.5

brew update
cd $( brew --prefix )/Homebrew/Library/Taps/homebrew/homebrew-core

# below is the last commit containing qt@5.5 with homebrew
git checkout 9ba3d6ef8891e5c15dbdc9333f857b13711d4e97 Formula/qt@5.5.rb

# here is where the error occurs
brew install qt@5.5

Solution

turns out line 25 of qt@5.5.rb formula file checked out in the command ( as seen in the referred tutorial)

git checkout 9ba3d6ef8891e5c15dbdc9333f857b13711d4e97 Formula/qt@5.5.rb

is causing this problem. commenting it out fixes the issue



来源:https://stackoverflow.com/questions/54499893/error-qt5-5-unknown-version-mountain-lion

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!