tasksh command not found

In this troubleshooting guide we learn how to fix tasksh command not found error message

Introduction

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

tasksh: command not found

or when using sudo you get the following error message

sudo: tasksh: command not found

Solutions to tasksh: command not found

How To Fix tasksh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tasksh is provided by tasksh package.

tasksh is:

Tasksh is a shell command that wraps Taskwarrior commands. It is intended to provide simpler Taskwarrior access, and add a few new features of its own.

Tasksh replaces the built-in shell command of older releases, and the bundled tasksh program of version 2.3.0.

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

sudo apt-get -y install tasksh

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

You can also use apt command to install tasksh.

sudo apt -y install tasksh

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

sudo aptitude install tasksh

Summary

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