cwl-upgrader command not found

In this troubleshooting guide we learn how to fix cwl-upgrader command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

cwl-upgrader: command not found

or when using sudo you get the following error message

sudo: cwl-upgrader: command not found

Solutions to cwl-upgrader: command not found

How To Fix cwl-upgrader: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu cwl-upgrader is provided by cwl-upgrader package.

cwl-upgrader is:

cwl-upgrader is a standalone upgrader for Common Workflow Language documents from draft-3, v1.0, and v1.1 to v1.2.

It does not check for correctness of the input document, for that one can use the CWL reference implementation available for Debian in package cwltool.

The Common Workflow Language (CWL) is a standard for describing computational data-analysis workflows, aiming to allow the creation of a workflow that is portable and thus may be run reproducibly in different computational environments.

To fix this problem, we can install more using the command below.

sudo apt-get -y install cwl-upgrader

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install cwl-upgrader.

sudo apt -y install cwl-upgrader

Or if you have aptitude installed you can use the following command.

sudo aptitude install cwl-upgrader

Summary

In this tutorial we learn how to fix cwl-upgrader command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.