0

I am specifically looking at WINE, but general advice on how to do this would also be welcome.

I am used to ARCH where you have convenient options to install all optional dependencies for an app. Is there a way to do this for UBUNTU? Perhaps a package manager for Ubuntu with such an option, or a terminal command?

2 Answers2

0

On Ubuntu there isn't a way to do this...But you can "workaround" the issue partially. For example, for Wine, you can install all dependencies with:

sudo apt install wine wine-recommends

This will install the necessary dependencies, but it is possible that some "non-essential" packages will be left out, and you may need to install them manually.

0

Dependencies are never optional. Suggested packages are, and you can use apt-get --install-suggests install wine to install them.

mikewhatever
  • 33,013