Gilbert Lopez
Gilbert Lopez

Reputation: 173

Installing Helidon on WSL

I would like to install Helidon SE on WSL Ubunto. I cannot find the steps in the documentation located at helidon.io. Can someone provide these or send me a link to the instructions? I've searched Google to no avail. Thanks.

Upvotes: 1

Views: 104

Answers (2)

Daniel Kec
Daniel Kec

Reputation: 559

Hi just place it in your /usr/local/bin/:

sudo curl -LJ -o /usr/local/bin/helidon \
https://github.com/oracle/helidon-build-tools/releases/latest/download/helidon-cli-linux-amd64 && \
sudo chmod +x /usr/local/bin/helidon

enter image description here

Happy coding!

Upvotes: 2

Laird Nelson
Laird Nelson

Reputation: 16238

Helidon in both of its flavors is a set of libraries that you use via Maven. I think the documentation covers this pretty well.

Upvotes: 1

Related Questions