multiple side-by-side versions with Homebrew?

2019-03-17 04:03发布

Is it possible to install multiple versions side-by-side with Homebrew?

I find myself in a situation needing sbt-0.7.x, sbt-0.10.x and sbt-0.11.0. I've installed both sbt-0.7.7 and sbt-0.10.1 manually at the moment to work around the issue (with sbt-0.11.0 being the latest 'sbt' from Homebrew).

标签: homebrew
2条回答
闹够了就滚
2楼-- · 2019-03-17 04:31

Yeah. When you install a new version of a package, it keeps the old one. The symlinks in /usr/local/bin or wherever point to the latest version, but you can still call the binaries (or link to the libraries) in the older version.

brew list to see what's installed. You can look in package directories to see all the versions; or call brew list --versions to see all packages and all versions.

查看更多
倾城 Initia
3楼-- · 2019-03-17 04:48

To easily switch between versions of formulae, you can use:

brew switch <formula> <version>

For example:

brew switch gradle 3.2.1

To list which versions you have installed try:

brew list --versions

or:

brew list <formula> --versions

If you want to get rid of older versions, just use:

brew cleanup
查看更多
登录 后发表回答