Installation

How to begin developing with Talos

Talos ships as a single, dependency-free executable. It can be installed through the scripts below for Linux, Darwin and Windows.

curl -fsSL https://talos.rroessler.io/install.sh | bash

To check that Talos was installed successfully, open a new terminal window and run:

Terminal
talos --version # should output "vx.y.z-build"

Note: If you receive a command not found error, you may have to manually add the installation directory (~/.talos/bin) to your $PATH.

Building Natively: Talos can be built natively by following the instructions available here.

Upgrading / Removing

Once installed, the Talos binary can upgrade or remove itself:

Terminal
talos upgrade --tag latest  # upgrades to the latest version
talos upgrade --remove      # removes Talos from your system

Note: To manually remove Talos:

rm -rf ~/.talos

On this page