asciinema command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
asciinema: command not found
or when using sudo you get the following error message
sudo: asciinema: command not found
Solutions to asciinema: command not found
How To Fix asciinema: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu asciinema is provided by asciinema package.
asciinema is:
Forget screen recording apps and blurry video. Enjoy a lightweight, purely text based approach to terminal recording.
This package provides a command line recorder for asciinema.org service or other instance of asciinema server.
To fix this problem, we can install more using the command below.
sudo apt-get -y install asciinema
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install asciinema.
sudo apt -y install asciinema
Or if you have aptitude installed you can use the following command.
sudo aptitude install asciinema
Summary
In this tutorial we learn how to fix asciinema command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.