Skip to main content

Installation

The Seqera CLI runs in your terminal on macOS, Linux, or Windows (via WSL). It connects to Seqera Platform and to the Co-Scientist backend so you can build, run, and debug Nextflow pipelines from a single interactive session.

This page covers how to install, update, and uninstall the CLI, and how to switch to a development build.

Prerequisites

You will need the following to get started:

  • Node.js 18 or later
  • macOS, Linux, or Windows with WSL
  • A Seqera Platform account (sign up for free)

Install the CLI

To install the CLI with the Platform install endpoint, run:

curl -fsSL https://ai.seqera.io/install | bash

Then confirm the CLI is on your PATH:

seqera --version

Install a development build

To install the latest pre-release, use the development channel:

curl -fsSL https://ai.seqera.io/install | bash -s -- --channel dev

Update the CLI

To update the CLI, run the install endpoint again. The install script updates the CLI in place:

curl -fsSL https://ai.seqera.io/install | bash

If you use Co-Scientist as a skill for a coding agent, sync your installed skills with the new CLI version after upgrading:

seqera skill check --update

This scans both local and global installations by default. Pass --global or --local to narrow the scope.

Uninstall the CLI

To remove the CLI from your system, run:

rm ~/.config/seqera-ai/*
rm ~/.seqera/bin/seqera

Learn more