如何在我的机器上安装octave 4.2.0?

如何安装Octave 4.2.0或最新版本?我试过了:

这是我的PC版本:

$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 9.6 (stretch)
Release:        9.6
Codename:       stretch

我运行了sudo -i输入root的命令,然后输入了以下命令。我不确定是否正确。

$ sudo -i
# echo deb http://deb.debian.org/debian stretch-backports main > /etc/apt/sources.list.d/stretch-backports.list
# apt update
Ign:1 http://deb.debian.org/debian stretch InRelease
Hit:2 http://security.debian.org stretch/updates InRelease
Hit:3 http://deb.debian.org/debian stretch-updates InRelease
Hit:4 http://deb.debian.org/debian stretch-backports InRelease
Hit:5 http://deb.debian.org/debian stretch Release
Hit:7 http://packages.cloud.google.com/apt cloud-sdk-stretch InRelease
Hit:8 https://download.docker.com/linux/debian stretch InRelease
Hit:9 https://nvidia.github.io/libnvidia-container/debian9/amd64  InRelease
Hit:10 http://packages.cloud.google.com/apt google-compute-engine-stretch-stable InRelease
Hit:11 https://nvidia.github.io/nvidia-container-runtime/debian9/amd64  InRelease
Hit:12 http://packages.cloud.google.com/apt google-cloud-packages-archive-keyring-stretch InRelease
Hit:6 https://packages.cloud.google.com/apt kubernetes-xenial InRelease
Ign:13 http://ppa.launchpad.net/alexlarsson/flatpak/ubuntu disco InRelease
Hit:14 https://nvidia.github.io/nvidia-docker/debian9/amd64  InRelease
Ign:16 http://ppa.launchpad.net/octave/stable/ubuntu disco InRelease
Ign:17 http://ppa.launchpad.net/picaso/octave/ubuntu disco InRelease
Err:18 http://ppa.launchpad.net/alexlarsson/flatpak/ubuntu disco Release
  404  Not Found
Err:19 http://ppa.launchpad.net/octave/stable/ubuntu disco Release
  404  Not Found
Err:20 http://ppa.launchpad.net/picaso/octave/ubuntu disco Release
  404  Not Found
Reading package lists... Done
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target Translations (main/i18n/Translation-en_US) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target DEP-11 (main/dep11/Components-amd64.yml) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target DEP-11 (main/dep11/Components-all.yml) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1W: Target DEP-11-icons (main/dep11/icons-64x64.tar) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
E: The repository 'http://ppa.launchpad.net/alexlarsson/flatpak/ubuntu disco Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://ppa.launchpad.net/octave/stable/ubuntu disco Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://ppa.launchpad.net/picaso/octave/ubuntu disco Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target Translations (main/i18n/Translation-en_US) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target DEP-11 (main/dep11/Components-amd64.yml) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
W: Target DEP-11 (main/dep11/Components-all.yml) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1W: Target DEP-11-icons (main/dep11/icons-64x64.tar) is configured multiple times in /etc/apt/sources.list.d/backports.list:1 and /etc/apt/sources.list.d/stretch-backports.list:1
斯蒂芬·基特

您可以从Stretch backports安装Octave 4.4.1(在撰写本文时)

  1. 添加反向端口存储库(作为根)

    echo deb http://deb.debian.org/debian stretch-backports main > /etc/apt/sources.list.d/stretch-backports.list
    
  2. 更新您的包裹索引

    apt update
    
  3. 安装OpenJDK

    apt install -t stretch-backports octave
    

如果您愿意使用sudo,则等效步骤为

echo deb http://deb.debian.org/debian stretch-backports main | sudo tee /etc/apt/sources.list.d/stretch-backports.list
sudo apt update
sudo apt install -t stretch-backports octave

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

我如何在Ubuntu 16.04上以4:2:0的频率获得4k @ 60Hz?

来自分类Dev

我如何从给定的yuv 4:2:0文件中提取yuv帧

来自分类Dev

如何在单行而不是按顺序打印此[6,4,2,0]的输出

来自分类Dev

我可以在我的机器上安装虚幻引擎 4 吗?

来自分类Dev

如何在Linux机器上创建install4j应用程序服务的2个单独实例

来自分类Dev

在我的汇编程序中,我试图计算 (((((2^0 + 2^1) * 2^2) + 2^3) * 2^4) + 2^5) 的方程

来自分类Dev

如何在Linux Mint上最佳安装v4l2loopback?

来自分类Dev

如何在Linux Mint上最佳安装v4l2loopback?

来自分类Dev

创建序列0、0、0、0、0、1、1、1、1、1、2、2、2、2、2、3、3、3、3、3、4、4、4、4、4 ,带有seq()的4

来自分类Dev

如何在Ubuntu 19.10中安装'libgnome2-0'

来自分类Dev

如何找出哪个磁盘是“ SD 0:4:0:0”

来自分类Dev

尝试进行双引导安装:在SCSI2的分区#1(0、0、0)中对类型为ext4的文件系统进行测试,发现未更正的错误

来自分类Dev

尝试进行双引导安装:在SCSI2的分区#1(0、0、0)中对类型为ext4的文件系统进行测试,发现未更正的错误

来自分类Dev

如何将奇数索引转换为索引{0,1,2,3,4,5}?

来自分类Dev

如何在Linux机器上检查DB2安装(Ubuntu)

来自分类Dev

如何在perl中有效地解析表达式'^#[0-9A-F] {2} \ $ [0-9A-F] {4} / $'

来自分类Dev

为什么朱莉娅2 ^ 3 ^ 4 = 0?

来自分类Dev

如何在 Windows-10 机器上的 Ubuntu 应用程序上安装 dos2unix

来自分类Dev

[0,1,2,3,4]和[[0],[1],[2],[3],[4]]和有什么区别?

来自分类Dev

如何解释sybase RESTRICT运算符(VA = 1)(4)(0)(0)(0)(0)

来自分类Dev

使用 Auth0 时,我无法在将 Angular2 样本迁移到 Angular4 后使用它

来自分类Dev

使用 YUV 4:2:0 平面颜色模型在 Mac OS X 上制作 ffmpeg 屏幕截图

来自分类Dev

如何创建从 (0,0,0) 到 (2,2,2) 的元组,条目最多为 2?

来自分类Dev

使用Scala收集方法可帮助将[0,0,0,1,1,1,1,0,0,1,1]的列表转换为[3,4,2,2]

来自分类Dev

如何将“24cd2ec2-6674-4aa2-a761-1b0a953124ba”(字符串对象)转换为 BigDecimal

来自分类Dev

如何在没有真实(物理)机器的情况下在Raspberry Pi 2上安装Windows 10 Core

来自分类Dev

在EC2上安装RAID0 EBS阵列

来自分类Dev

python 将列表 [0, 1, 2, 3, 4, 5] 转换为 [0, 1, 2], [1,2,3], [2,3,4]

来自分类Dev

Python / Numpy如何在间隔0,pi / 2上使用arctan或arctan2?

Related 相关文章

  1. 1

    我如何在Ubuntu 16.04上以4:2:0的频率获得4k @ 60Hz?

  2. 2

    我如何从给定的yuv 4:2:0文件中提取yuv帧

  3. 3

    如何在单行而不是按顺序打印此[6,4,2,0]的输出

  4. 4

    我可以在我的机器上安装虚幻引擎 4 吗?

  5. 5

    如何在Linux机器上创建install4j应用程序服务的2个单独实例

  6. 6

    在我的汇编程序中,我试图计算 (((((2^0 + 2^1) * 2^2) + 2^3) * 2^4) + 2^5) 的方程

  7. 7

    如何在Linux Mint上最佳安装v4l2loopback?

  8. 8

    如何在Linux Mint上最佳安装v4l2loopback?

  9. 9

    创建序列0、0、0、0、0、1、1、1、1、1、2、2、2、2、2、3、3、3、3、3、4、4、4、4、4 ,带有seq()的4

  10. 10

    如何在Ubuntu 19.10中安装'libgnome2-0'

  11. 11

    如何找出哪个磁盘是“ SD 0:4:0:0”

  12. 12

    尝试进行双引导安装:在SCSI2的分区#1(0、0、0)中对类型为ext4的文件系统进行测试,发现未更正的错误

  13. 13

    尝试进行双引导安装:在SCSI2的分区#1(0、0、0)中对类型为ext4的文件系统进行测试,发现未更正的错误

  14. 14

    如何将奇数索引转换为索引{0,1,2,3,4,5}?

  15. 15

    如何在Linux机器上检查DB2安装(Ubuntu)

  16. 16

    如何在perl中有效地解析表达式'^#[0-9A-F] {2} \ $ [0-9A-F] {4} / $'

  17. 17

    为什么朱莉娅2 ^ 3 ^ 4 = 0?

  18. 18

    如何在 Windows-10 机器上的 Ubuntu 应用程序上安装 dos2unix

  19. 19

    [0,1,2,3,4]和[[0],[1],[2],[3],[4]]和有什么区别?

  20. 20

    如何解释sybase RESTRICT运算符(VA = 1)(4)(0)(0)(0)(0)

  21. 21

    使用 Auth0 时,我无法在将 Angular2 样本迁移到 Angular4 后使用它

  22. 22

    使用 YUV 4:2:0 平面颜色模型在 Mac OS X 上制作 ffmpeg 屏幕截图

  23. 23

    如何创建从 (0,0,0) 到 (2,2,2) 的元组,条目最多为 2?

  24. 24

    使用Scala收集方法可帮助将[0,0,0,1,1,1,1,0,0,1,1]的列表转换为[3,4,2,2]

  25. 25

    如何将“24cd2ec2-6674-4aa2-a761-1b0a953124ba”(字符串对象)转换为 BigDecimal

  26. 26

    如何在没有真实(物理)机器的情况下在Raspberry Pi 2上安装Windows 10 Core

  27. 27

    在EC2上安装RAID0 EBS阵列

  28. 28

    python 将列表 [0, 1, 2, 3, 4, 5] 转换为 [0, 1, 2], [1,2,3], [2,3,4]

  29. 29

    Python / Numpy如何在间隔0,pi / 2上使用arctan或arctan2?

热门标签

归档