Install RDM packages using apt-get

Install RDM packages using apt-get

avatar

Is there a way to install using apt-get in Ubuntu rather than downloading the file from a desktop interface?

All Comments (3)

avatar

Hi,

Not at the moment, unfortunately.
You could wget the file and then use dpkg -i package.deb as an alternative (even if it's not as simple).

Jonathan Lafontaine

avatar

Appreciate the answer. I can work with that, thanks!

avatar

Just for reference:

Instead of using 'dpkg -i' and resolving dependencies manually, one can use

$ sudo apt install -f /path/to/package.deb

This will take care of the dependencies for you.