Skip to content

Instantly share code, notes, and snippets.

@zxh
Created June 21, 2018 09:39
Show Gist options
  • Save zxh/549f545655de2147e2217f195ca08a64 to your computer and use it in GitHub Desktop.
Save zxh/549f545655de2147e2217f195ca08a64 to your computer and use it in GitHub Desktop.
change scala version via brew
# show all scala versions
brew search scala
# install specific version, maybe scala 2.11
brew install scala@2.11
# unlink current scala version
brew unlink scala
# link new scala version
brew link scala@2.11 --force
# check result
scala -version
@sunbuhui
Copy link

thanks...Spend half day solving this problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment