alice command not found

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

Introduction

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

alice: command not found

or when using sudo you get the following error message

sudo: alice: command not found

Solutions to alice: command not found

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

In Ubuntu alice is provided by alice package.

alice is:

Alice is an acronym for “Altogether Lovely Internet Chatting Experience” which is an IRC client that is viewed in the web browser. Alice runs in the background maintaining connections and collecting messages. When a browser connects, it will display the 100 most recent messages for each channel, and update with any new messages as they arrive.

Alice also logs messages to an SQLite database. These logs are searchable through the web interface.

For desktop notifications install libdesktop-notify-perl.

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

sudo apt-get -y install alice

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

You can also use apt command to install alice.

sudo apt -y install alice

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

sudo aptitude install alice

Summary

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