idwcc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
idwcc: command not found
or when using sudo you get the following error message
sudo: idwcc: command not found
Solutions to idwcc: command not found
How To Fix idwcc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu idwcc is provided by idwcc package.
idwcc is:
Provides a web application to be used as an OpenID Connect or OAuth2 client.
Supports PKCE, token introspection, revocation, client registration, DPoP, Rich Authorization Request, Pushed Authorization Request, JWT Access tokens, encrypted tokens, requests and responses.
To fix this problem, we can install more using the command below.
sudo apt-get -y install idwcc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install idwcc.
sudo apt -y install idwcc
Or if you have aptitude installed you can use the following command.
sudo aptitude install idwcc
Summary
In this tutorial we learn how to fix idwcc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.