web-dev-qa-db-fra.com

Problèmes d'installation de la langue Julia

Je suis les instructions de ici (voir la section Ubuntu). Il me dit de faire

Sudo add-apt-repository ppa:staticfloat/juliareleases
Sudo add-apt-repository ppa:staticfloat/Julia-deps
Sudo apt-get update

Mais alors la commande

Sudo apt-get install Julia

Donne moi

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 Julia : Depends: libcholmod1.7.1 but it is not installable or
              libcholmod2.1.2 but it is not installable or
              libcholmod3.0.6 but it is not installable
     Depends: libumfpack5.4.0 but it is not installable or
              libumfpack5.6.2 but it is not installable or
              libumfpack5.7.1 but it is not installable
E: Unable to correct problems, you have held broken packages.

J'utilise Xubuntu 16.10.

Pouvez-vous m'aider à comprendre ce qui se passe et comment le résoudre?

5
Gabriel

Il semble que vous ayez des paquets cassés. Pour résoudre le problème, vous pouvez essayer de saisir ceci dans le terminal:

Sudo sh -c "apt-get update;apt-get dist-upgrade;apt-get autoremove;apt-get autoclean"

Entrez également ceci dans le terminal:

Sudo apt --fix-broken install

Cela devrait réparer vos paquets cassés. Maintenant, essayez d'installer Julia à nouveau.

1
Krish