从版本 2023.66594-9 开始,TeX Live 的打包改变了组织结构,更接近上游的集合(collections)。尽管新的 texlive-basic
包替换了 texlive-core
包,很多原本属于 texlive-core 包的内容(包括一些特定语种的文件)现在被拆分到了别的包中去。如果想了解哪个 Arch 软件包中提供了特定 CTAN 宏包,可以使用 tlmgr
工具,比如:
$ tlmgr info euler | grep collection
collection: collection-latexrecommended
这个的意思是说 euler CTAN 宏包包含在了 texlive-latexrecommended
软件包中。你也可以使用 pacman -F
命令查询特定文件的归属。
我们提供了新的 texlive-meta 元包用来安装所有子包(除了特定语种的),还有新的 texlive-doc 包提供了完整的文档,用以离线查阅。
openblas 包在 0.3.23-2 版本之前没有打包进优化过的 LAPACK 过程和它与 CBLAS/LAPACKE 接口的兼容性。我们现在改变了这个决定,并且现在用户可以选择安装另一个系统级默认 BLAS/LAPACK 实现同时保持安装 openblas 包,方便今后同时安装 BLIS, ATLAS 之类的包。
默认的 BLAS 实现会被用在大部分包中,比如 NumPy 或者 R。请安装 “blas-openblas” 和 “blas64-openblas” 包,让 OpenBLAS 成为默认的 BLAS 实现,就像以前的行为。
不过如果你现在已经安装了 OpenBLAS 作为默认 BLAS 实现,在更新时会遇到如下报错:
error: failed to prepare transaction (could not satisfy dependencies)
:: installing openblas (0.3.23-2) breaks dependency 'blas' required by cblas
:: installing openblas (0.3.23-2) breaks dependency 'blas' required by lapack
请在通常的 -Syu 命令后加上你想使用的默认 BLAS 实现来避开这个问题,比如:
pacman -Syu blas-openblas
或
pacman -Syu blas