lexicon command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lexicon: command not found
or when using sudo you get the following error message
sudo: lexicon: command not found
Solutions to lexicon: command not found
How To Fix lexicon: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lexicon is provided by lexicon package.
lexicon is:
Lexicon provides a way to manipulate DNS records on multiple DNS providers in a standardized way. Lexicon was designed to be used in automation, specifically letsencrypt.
This package installs the tool for Python 3.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lexicon
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lexicon.
sudo apt -y install lexicon
Or if you have aptitude installed you can use the following command.
sudo aptitude install lexicon
Summary
In this tutorial we learn how to fix lexicon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.