web-dev-qa-db-fra.com

Je ne peux pas installer Chromium ou Chrome sur Ubuntu 16.04 LTS

je viens d’installer Ubuntu 16.04 LTS sur ma machine assemblée.
J'ai essayé d'installer Chromium via Ubuntu Software ou Chrome, mais le processus d'installation s'arrête très bientôt. J'ai essayé de courir dans le terminal:

Sudo apt install chromium 

Reading package lists... Done Building dependency tree Reading state information... Done Package chromium 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 However the following packages replace it: chromium-bsu:i386 chromium-bsu E: Package 'chromium' has no installation candidate

Sudo apt install chromium-bsu 

Reading package lists... Done Building dependency tree       Reading state information... Done You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 chromium-browser-l10n : Depends: chromium-browser (>= 55.0.2883.87-0ubuntu0.16.04.1263) but it is not going to be installed
                         Depends: chromium-browser (< 55.0.2883.87-0ubuntu0.16.04.1263.1~) but it is not going to be installed
 chromium-bsu : Depends: chromium-bsu-data (>= 0.9.14) but it is not going to be installed
                Depends: fonts-uralic but it is not going to be installed or
                         ttf-uralic but it is not installable
                Depends: libalut0 (>= 1.0.1) but it is not going to be installed
                Depends: libglc0 (>= 0.7.1) but it is not going to be installed
                Depends: libsdl-image1.2 (>= 1.2.10) but it is not going to be installed
                Depends: libsdl1.2debian (>= 1.2.11) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).    

Peut-être y at-il un problème de dépendances non résolues?

4
Gianfranco L.

Oui, le problème était les dépendances, elles sont corrigées avec

Sudo apt -f install

Le deuxième problème était un fichier restant de la tentative infructueuse d’apt d’install dans/var/cache/apt/archives, pour réparer cette exécution.

Sudo rm /var/cache/apt/archives/chromium*

Maintenant Chromium va installer

Sudo apt install chromium-browser

VOTANTS

S'il vous plaît, envisagez de donner cette réponse un peu d'amour, cela a vraiment aidé avec cette question.

7
Mark Kirby

Accédez à la page d'accueil Google de votre navigateur. Un téléchargement sous Linux devrait y être disponible. Téléchargez-le et cliquez dessus pour l'installer automatiquement. Si vous ne le trouvez pas sur la page d'accueil, recherchez "Google Chrome" _. Téléchargement du navigateur ".

0
Bob