Homebrew install specific version of formula?

后端 未结 27 2504
渐次进展
渐次进展 2020-11-21 11:21

How do I install a specific version of a formula in homebrew? For example, postgresql-8.4.4 instead of the latest 9.0.

27条回答
  •  不要未来只要你来
    2020-11-21 12:11

    brew versions and brew install https://raw.githubusercontent.com/Homebrew/homebrew-core//Formula/.rb not supported now.

    You can try like this:

    $ brew extract --version 5.6.2 gradle vitahlin/core
    $ brew install gradle@5.6.2
    

提交回复
热议问题