Reputation: 173
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
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
Happy coding!
Upvotes: 2
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