gandi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gandi: command not found
or when using sudo you get the following error message
sudo: gandi: command not found
Solutions to gandi: command not found
How To Fix gandi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gandi is provided by gandi-cli package.
gandi-cli is:
The ‘gandi’ command-line interface provides a tool for Gandi customers to manage web services:
- Register a domain name.
- Create a virtual machine.
- Deploy a web application with Simple Hosting.
- Create a SSL Certificate.
- Add a Web Application vhost with SSL.
- Create a Private VLAN.
Gandi is a provider of domain name registration, web hosting, and related services.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gandi-cli
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gandi-cli.
sudo apt -y install gandi-cli
Or if you have aptitude installed you can use the following command.
sudo aptitude install gandi-cli
Summary
In this tutorial we learn how to fix gandi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.