TMan
TMan

Reputation: 131

How to install spring boot CLI on Mac?

I am trying to install the Spring Boot CLI. I followed the instructions from the website. (https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started-installing-spring-boot.html) The error I am getting is:

$ spring --version rbenv: spring: command not found

The `spring' command exists in these Ruby versions: 2.4.0

I ran all the brew and bundle installs, but I am still running into issues. Any suggestions?

Upvotes: 13

Views: 16368

Answers (4)

aswzen
aswzen

Reputation: 1632

Better using Homebrew

  1. Install Homebrew using /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2. Check if Homebrew installed using brew -v

  3. Update Homebrew packager brew tap spring-io/tap

  4. Install Spring Boot CLI using brew install spring-boot

Homebrew installs spring to /usr/local/bin

  1. Check Spring Boot CLI using spring version

If you want to remove it use brew uninstall spring-boot, add additional --force to force it


Update: Repository for Spring Boot has been moved from pivotal/tap to spring-io/tap

See the documentation here

Upvotes: 27

AjitChahal
AjitChahal

Reputation: 271

Spring Boot has relocated to spring-io/tap

brew tap spring-io/tap
brew uninstall springboot
brew install spring-boot

Upvotes: 13

aroychow
aroychow

Reputation: 69

Windows users:

Download the zip

https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/2.0.2.RELEASE/spring-boot-cli-2.0.2.RELEASE-bin.zip

Extract & Run spring.bat inside the /bin folder

Mac users:

$> brew tap pivotal/tap

$> brew install springboot

Upvotes: 6

Derrops
Derrops

Reputation: 8117

You can use sdkman http://sdkman.io/ I cannot submit such a short answer so added more text...

Upvotes: 3

Related Questions