DEV Community

Cover image for Install SDKMAN in Ubuntu
Ahmad Mujahid
Ahmad Mujahid

Posted on

Install SDKMAN in Ubuntu

Hi guys, it's been a long time since my last blog post. So currently I play with Micronaut framework and find an interesting CLI tool to initiate Micronaut project locally (mn command).

I got a problem when installing SDKMAN in my Ubuntu WSL.

Based on this documentation (sdkman.io), I just need to run these commands

$ curl -s "https://get.sdkman.io" | bash
Enter fullscreen mode Exit fullscreen mode

Then use this to register the command (sdk command)

$ source "$HOME/.sdkman/bin/sdkman-init.sh"
Enter fullscreen mode Exit fullscreen mode

But turns out, I also need to install zip and unzip.

$ sudo apt install zip unzip
Enter fullscreen mode Exit fullscreen mode

Then, this fixed my issue. That's it!
I hope i can write more in the future!

Top comments (0)