cylc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cylc: command not found
or when using sudo you get the following error message
sudo: cylc: command not found
Solutions to cylc: command not found
How To Fix cylc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cylc is provided by cylc-flow package.
cylc-flow is:
Cylc (“silk”) is a suite engine and meta-scheduler that specializes in suites of cycling tasks for weather forecasting, climate modeling, and related processing (it can also be used for one-off workflows of non-cycling tasks, which is a simpler problem).
To fix this problem, we can install more using the command below.
sudo apt-get -y install cylc-flow
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cylc-flow.
sudo apt -y install cylc-flow
Or if you have aptitude installed you can use the following command.
sudo aptitude install cylc-flow
Summary
In this tutorial we learn how to fix cylc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.