我正在尝试使用该命令在 ubuntu 18.04 上安装 texlive 2020,perl install-tl
但收到此错误消息,
Unknown regexp modifier "/b" at install-tl line 1, at end of line
BEGIN not safe after errors--compilation aborted at install-tl line 32.
这很奇怪,因为install-tl
没有任何一行出现“/b”。以下是 的前几行install-tl
。
有人可以给出建议吗?
!/usr/bin/env perl
# $Id: texlive2020-20200406.iso,v 1.1 2020/05/17 18:09:10 simon Exp simon $
# Copyright 2007-2020
# Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg.
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
# Be careful when changing wording: *every* normal informational message
# output here must be recognized by the long grep in tl-update-tlnet.
这是我正在运行的 perl 版本
This is perl 5, version 26, subversion 1 (v5.26.1) built for x86_64-linux-gnu-thread-multi
答案1
但是您获得的安装脚本已损坏。
!/usr/bin/env perl
应该
#!/usr/bin/env perl
它指定了在此脚本上使用的解释器。
您看到它被解释为带有(坏)修饰符的/usr/b
正则表达式 /usr/
b