How do I install a package with aptitude?

After running aptitude, use these key commands as found at Using aptitude GUI style: (If you use Bionic, use CTRL+T instead of F10)

F10 to access the aptitude menu.

? this is to access "help"

Use 'up' , 'down' , 'left' , 'right' , to navigate.

Use Enter to select items.

Use + or - to install, update, or remove a package

Use g to preview or confirm actions

q to quit – this will also close the currently open window (g goes forward, q goes back)

The common use of aptitude in TUI (text user interface) is:

  1. run aptitude;
  2. press u (update the lists of available packages);
  3. press U (Mark all upgradable packages to be upgraded);
  4. (search/select some stuff to install, is optional);
  5. press g (to see the pending actions and modify if needed);
  6. press g (again, to start the download).

Some time when you need to resolve conflicts, you discover that you made a mistake;

you can easily use 'Cancel pending actions' in the 'Actions' menu so that you can re-select.

When reviewing pending actions:

a explicitly accepts an action (use again to unaccept)

r rejects an action

g again goes ahead with pending actions

Using aptitude from the command line like apt-get

To install a package on a console run:

aptitude install package name

To search packages:

aptitude search package name

For example, let's say you want to install Pidgin

Search:

aptitude search pidgin

Install:

aptitude install pidgin

To search for a package, hit / and enter a part of the package name you want to search (regexps can be used). This is similar to search in editors like vim.

You can use the up- and down-arrow keys for browsing, together with enter for toggling the tree nodes.

When you have found the right package, hit + to mark it for installation (it will be shown in green and you see an i as the second character in the status column). Then type g (for "go") to get to the preview screen showing all pending changes. A second g will start the installation.

You can also use enter when on a package to open a window with details of the package.

When there are more than one windows open in aptitude (like the package details and preview windows), you switch between them with F6 and F7, and close the current window with q.