Newcomer
Newcomer

Reputation: 47

Nextflow version 0.26 Installation

I'm trying to run a Nextflow-based pipeline, but I receive this message: "This workflow requires Nextflow version 0.26 or greater -- You are running version 20.01.0"

I have tried two commands to install Nextflow on my system: wget -qO- https://get.nextflow.io | bash AND curl -fsSL get.nextflow.io | bash

Both of them install version 20.01.0. What should I do to get version 0.26?

Thank you for your help

Upvotes: 1

Views: 843

Answers (1)

Steve
Steve

Reputation: 54512

If you already have Nextflow installed, you can use the NXF_VER environment variable to specify which version of Nextflow to run:

NXF_VER=0.26.0 nextflow run ...

Alternatively, install the release you want using:

wget -qO- https://github.com/nextflow-io/nextflow/releases/download/v0.26.0/nextflow-0.26.0-all | bash

Upvotes: 2

Related Questions