wlc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wlc: command not found
or when using sudo you get the following error message
sudo: wlc: command not found
Solutions to wlc: command not found
How To Fix wlc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wlc is provided by wlc package.
wlc is:
Weblate is web based translation with tight VCS integration supporting wide range of file formats and makes it easy for translators to contribute.
This package provides command line utility to work with Weblate remotely and python module.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wlc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wlc.
sudo apt -y install wlc
Or if you have aptitude installed you can use the following command.
sudo aptitude install wlc
Summary
In this tutorial we learn how to fix wlc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.