dicelab command not found

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

Introduction

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

dicelab: command not found

or when using sudo you get the following error message

sudo: dicelab: command not found

Solutions to dicelab: command not found

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

In Ubuntu dicelab is provided by dicelab package.

dicelab is:

With dicelab you can express most dice rolls (and similar things) in a functional language, and then either roll the expression, or evaluate the statistical distribution. In the latter case you can choose whether you want to simply roll and tally many times, or actually compute the distribution (which is more precise, but takes a long time in some obscure cases).

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

sudo apt-get -y install dicelab

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

You can also use apt command to install dicelab.

sudo apt -y install dicelab

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

sudo aptitude install dicelab

Summary

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