gcalcli command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gcalcli: command not found
or when using sudo you get the following error message
sudo: gcalcli: command not found
Solutions to gcalcli: command not found
How To Fix gcalcli: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gcalcli is provided by gcalcli package.
gcalcli is:
gcalcli is a Python application that allows you to access your Google Calendar from a command line. It’s easy to get your agenda, search for events, and quickly add new events. Additionally gcalcli can be used as a reminder service to execute any application you want.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gcalcli
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gcalcli.
sudo apt -y install gcalcli
Or if you have aptitude installed you can use the following command.
sudo aptitude install gcalcli
Summary
In this tutorial we learn how to fix gcalcli command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.