1

How can I install the dialog package?

I try these commands, but it doesn't work:

sudo apt-get update
sudo apt-get install dialog
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package dialog is not available, but is referred to by another package.

This may mean that the package is missing, has been obsoleted, or is only available from another source

Nmath
  • 12,333

1 Answers1

3

The dialog package is in the universe repository. To enable that, use the following command:

sudo add-apt-repository universe

Don't forget to run sudo apt update, after which you will be able to install dialog.

DynamicBits
  • 453
  • 2
  • 8