在 Raspberry pi 3 上的 Ubuntu Mate 上安装 Octave

在 Raspberry pi 3 上的 Ubuntu Mate 上安装 Octave

我在 Raspberry Pi 3 上安装了 Ubuntu Mate,我尝试安装 Octave,但目前没有成功。我得到了(抱歉,如果它不准确,我从西班牙语翻译而来):

$  sudo apt-get -y install octave
 octave : dependency: octave-common (= 4.0.0-3ubuntu9.2) but 4.2.2-1~octave~xenial2 will be installed

$ sudo apt-get -y install octave-common
octave-common is in its more recent version (4.2.2-1~octave~xenial2).

我做错了什么或者没做什么?

答案1

octave在 Lubuntu 18.04.1 LTS (amd64) 中安装了版本 4.2.2-1。并且octave-common应该是同一版本。

$ LANG=C apt-cache policy octave octave-common
octave:
  Installed: 4.2.2-1ubuntu1
  Candidate: 4.2.2-1ubuntu1
  Version table:
 *** 4.2.2-1ubuntu1 500
        500 http://se.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
        100 /var/lib/dpkg/status
octave-common:
  Installed: 4.2.2-1ubuntu1
  Candidate: 4.2.2-1ubuntu1
  Version table:
 *** 4.2.2-1ubuntu1 500
        500 http://se.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
        500 http://se.archive.ubuntu.com/ubuntu bionic/universe i386 Packages
        100 /var/lib/dpkg/status

也许有帮助,如果你运行

sudo apt update

也许还

sudo apt install -f

然后再试一次

sudo apt install octave

相关内容