How to remove SBT in OS X?

I want to remove SBT (Simple Build Tool) from my Mac. How to do it?

+5
source share
2 answers

It depends on how you installed it. If this was done using homebrew, you should simply run at the command line:

$ brew uninstall sbt

Another solution is to manually remove the launcher script

$ which sbt
/Users/bam/bin/sbt
$ rm /Users/bam/bin/sbt
+9
source

You also need to manually remove sbtopts and sbtopts.default from / usr / local / etc

0
source

All Articles