web-dev-qa-db-fra.com

Le package 'cmake' n'a pas de candidat pour l'installation ubuntu 12.04

Quand je cours

Sudo apt-get install cmake

Je reçois la réponse suivante:

Package cmake is not available, but is referred to by another package.
This may mean the package is missing, has been obsoleted, or is only available from another source

E: Package 'cmake' has no installation candidate

Comment installer cmake?

3
ttt

J'ai fait face au même problème et après avoir googlé un peu, je suis capable d'installer cmake. J'ai résolu mon problème comme suit:

Sudo apt-get update -y
Sudo apt-get update
Sudo apt-get install cmake
8
Wessi

Essaye ça:

Sudo apt-get update -y
Sudo apt-get update
Sudo apt-get install cmake -y

Je ne peux l'installer qu'en ajoutant '-y' à la troisième ligne

0
Rodo

Avez-vous activé le référentiel de l'univers? Quelle version d'Ubuntu?

Essayez ceci: https://launchpad.net/~kalakris/+archive/cmake .

C'est un PPA avec le plus récent cmake. Je vous confirme que cmake existe et peut être installé avec:

apt-get install cmake
0
francois_rv