Installation
A step-by-step guide on how to install, update or remove the Tessl CLI.
Install
Download the CLI
The CLI can be installed using npm. Note: this does require a Node version 22.x or higher
npm install -g @tessl/cli
Test the CLI
Run the following command to check that everything is working.
tessl --help
Authenticate with Tessl [optional]
👉 If you are not enrolled in the closed beta program, please ignore this step.
Log in to Tessl to access all CLI functionality.
tessl login
This will display a verification code and URL
Please log in at the URL below (if your browser didn't open automatically):
https://auth.tessl.io/device
Then confirm the following code:
XYZA-BCDE
⠏ Waiting for confirmation…
Open the URL in your browser and login to Tessl with either your Github or Google account.

Once authenticated, you can enter the device code in your browser window.

You can now verify your authentication status with:
tessl whoami
To log out when needed:
tessl logout
Upgrade
To upgrade your existing CLI to the latest version
tessl update
This command will automatically update your CLI to the latest version.
Update to specific version
You can find all the releases via https://install.tessl.io/metadata/releases.txt
To install/upgrade to a specific version
You can find all the releases in the changelog. To install/upgrade to a specific version
Example to install the specific version, v0.19.0
tessl update -t v0.19.0
Uninstall
To uninstall the Tessl CLI, run
npm uninstall -g tessl
To remove Tessl config files, delete the
~/.tessl
directory
Last updated