Reputation: 4678
I want to remove SBT (Simple Build Tool) from my Mac. How do I do this?
Upvotes: 10
Views: 18413
Reputation: 5219
window uninstall
choco uninstall sbt
Window Install
choco install sbt
Upvotes: 0
Reputation: 895
You also need to remove manually sbtopts and sbtopts.default from /usr/local/etc
Upvotes: 7
Reputation: 1342
It depends how you installed it. If it has been done through homebrew you should just run in the command line:
$ brew uninstall sbt
The other solution is to manually delete the launcher script
$ which sbt
/Users/bam/bin/sbt
$ rm /Users/bam/bin/sbt
Upvotes: 19