Install the Akka CLI
The Akka CLI, akka
enables you to interact with Akka projects. To install it, follow these steps:
- Linux
-
Download and install the latest version of
akka
:curl -sL https://doc.akka.io/install-cli.sh | bash
bashIf that fails due to permission issues, use:
curl -sL https://doc.akka.io/install-cli.sh | bash -s -- --prefix /tmp && \ sudo mv /tmp/akka /usr/local/bin/akka
bashYou can pass options to the installer script with
-s --
e.g.:curl -sL https://doc.akka.io/install-cli.sh | bash -s -- --prefix=$HOME --version=2.0.22 --verbose curl -sL https://doc.akka.io/install-cli.sh | bash -s -- -P $HOME -v 2.0.22 -V
bash - macOS
- Windows
Verify that the Akka CLI has been installed successfully by running the following to list all available commands:
akka help
command window