web-dev-qa-db-fra.com

Le package Gdebi-core n'est pas disponible

Sudo apt-get install -f gdebi-core
[Sudo] password for sdksdk:
Reading package lists ... Done
Building dependency tree
Loading state information ... Done
Gdebi-core package is not available, but is referred to by another package. This may mean,
that the package is missing, it has been obsoleted, or is only available from another source
4
Daniel Ferencz

Commencez par vérifier que universe est activé. Vous pouvez l'activer par:

Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

Puis lancez la commande:

Sudo apt-get update

Sudo apt-get install gdebi
4
Maythux

Le paquetage gdebi-core se trouve dans le référentiels principaux . Vérifiez votre /etc/apt/sources.list pour une entrée comme celle-ci, par exemple. pour fidèle:

Pour la distribution Trusty, par exemple:

deb http://archive.ubuntu.com/ubuntu trusty main

Voir votre distribution avec la commande

lsb_release -sc

de man lsb_release

-c, --codename
      Display the code name of the currently installed distribution.

-s, --short
      Use  the  short  output  format  for any information displayed.
      This format omits the leading header(s).

Si l'entrée est manquante, utilisez cette commande:

Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main"

Après ça:

Sudo apt-get update
Sudo apt-get install gedbi-core
2
A.B.