radicale command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
radicale: command not found
or when using sudo you get the following error message
sudo: radicale: command not found
Solutions to radicale: command not found
How To Fix radicale: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu radicale is provided by radicale package.
radicale is:
Radicale is a CalDAV (calendar) and CardDAV (contact) server.
Calendars and address books are available for both local and remote access, possibly limited through authentication policies. They can be viewed and edited by calendar and contact clients on mobile phones or computers.
This package contains the radicale daemon.
Creating encrypted password files require the package apache2-utils.
Stronger password hashes require the packages python3-passlib and python3-bcrypt.
Serving directly with uWSGI requires the packages uwsgi and uwsgi-plugin-python3. Serving with Apache as front-end and uWSGI only as middleware additionally requires the packages apache2 and libapache2-mod-proxy-uwsgi.
To fix this problem, we can install more using the command below.
sudo apt-get -y install radicale
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install radicale.
sudo apt -y install radicale
Or if you have aptitude installed you can use the following command.
sudo aptitude install radicale
Summary
In this tutorial we learn how to fix radicale command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.