web-dev-qa-db-ja.com

Julia言語のインストールに関する問題

here からの指示に従っています(Ubuntuセクションを参照)。するように言われます

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

しかし、その後、コマンド

Sudo apt-get install Julia

くれます

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.

Xubuntu 16.10を使用しています。

何が起こっているのか、どのように解決するのかを理解するのを手伝ってもらえますか?

5
Gabriel

パッケージが壊れているようです。問題を修正するには、これを端末に入力してみてください。

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

また、これを端末に入力します。

Sudo apt --fix-broken install

これにより、破損したパッケージが修正されます。 Juliaをもう一度インストールしてください。

1
Krish