我在 ubuntu 20.04 上尝试通过 tlmgr 安装 latex 包时收到错误,verify_checksum: -5

我在 ubuntu 20.04 上尝试通过 tlmgr 安装 latex 包时收到错误,verify_checksum: -5

我在 ubuntu 20.04 上安装了 texlive:

sudo apt -y install texlive-latex-extra texlive-extra-utils texlive-font-utils

当我尝试安装 latex 包(任意)时,我得到:

/usr/bin/tlmgr: unexpected return value from verify_checksum: -5

有任何想法吗?

编辑:你好,我安装了软件包tlmgr install package_name。安装 latex 时会安装 tlmgr... 的输出dpkg -S $(which tlmgr)

texlive-base: /usr/bin/tlmgr

输出apt-cache policy texlive-base

texlive-base:
  Installed: 2019.20200218-1
  Candidate: 2019.20200218-1
  Version table:
 *** 2019.20200218-1 500
        500 http://cl.archive.ubuntu.com/ubuntu focal/universe amd64 Packages
        500 http://cl.archive.ubuntu.com/ubuntu focal/universe i386 Packages
        100 /var/lib/dpkg/status

输出tlmgr --version

tlmgr revision 53568 (2020-01-27 19:20:16 +0100)
tlmgr using installation: /usr/share/texlive
TeX Live (http://tug.org/texlive) version 2019

答案1

这里有两个时刻:

  1. 根据StackExchange 上的此问答- TuG GPG 密钥已过期,因此您必须添加--verify-repo=none命令,如下所示:

    tlmgr --verify-repo=none install beamer
    

    另请注意将tlmgr显示警告:

    tlmgr: Local TeX Live (2019) is older than remote repository (2020).
    

    因此需要采取一些额外的措施。

  2. 我个人更喜欢使用发行版中的 deb 包进行安装。您可以使用这种方法作为解决方法。对于投影机包可以获得正确的 deb-package 名称在 packages.ubuntu.com 上搜索beamer.cls.因此你必须安装单个包:

    sudo apt-get install texlive-latex-recommended
    

答案2

tlmgr: Local TeX Live (2019) is older than remote repository (2020)。通过更改 TexLive 2019 的正确存储库,此错误已解决。

  1. 在终端中输入此命令来更改默认存储库
tlmgr repository add tug.org/historic/systems/texlive/2019/tlnet-final
tlmgr repository list
tlmgr repository remove mirror.ctan.org/systems/texlive/tlnet 
tlmgr option repository tug.org/historic/systems/texlive/2019/tlnet-final 
  1. 使用以下命令安装所需的 LaTeX 包:
tlmgr --verify-repo=none install beamer

在此示例中,我beamer使用参数成功安装了包--verify-repo=none

相关内容