在 Windows 10 上使用 LaTeX Workshop 在 VSCode 上格式化文档时由于缺少 perl 模块而出错

问题描述 投票:0回答:2

我在 Visual Studio Code 上安装了最新版本的 LaTeX Workshop,以及 MikTex 的最新版本和 ActivePerl:

This is perl 5, version 28, subversion 1 (v5.28.1) built for MSWin32-x64-multi-thread
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2018, Larry Wall
Binary build 0000 [25391a6d] provided by ActiveState http://www.ActiveState.com
Built Oct 28 2020 18:24:51

在 Windows 10 Pro 20H2 计算机上。 我还有一个 IEEE 科学文档项目,它构建正确,但是当我尝试格式化文档时,出现此错误:`

[13:58:18] Start formatting with latexindent.
[13:58:18] Formatting with command latexindent -c,c:/Users/user/Desktop/path/,c:/Users/user/Desktop/path/__latexindent_temp.tex,-y=defaultIndent: '    ' 
[13:58:18] Formatting failed with exit code 2
[13:58:18] stderr: Can't locate YAML/Tiny.pm in u/INC
   (you may need to install the YAML::Tiny module)
   (@INC contains: C:/Users/user/AppData/Local/Programs/MiKTeX/scripts/latexindent C:/Perl64/site/lib C:/Perl64/lib)
   at C:/Users/user/AppData/Local/Programs/MiKTeX/scripts/latexindent/LatexIndent/GetYamlSettings.pm line 20.

(为了可读性添加了换行符。)

我已经搜索了有关如何安装缺少的 YAML::Tiny 模块的说明,但没有成功。 我见过一个名为 ppm 的工具,但似乎不再可用,我该如何安装这个工具以及其他缺失的软件包?非常感谢。

perl visual-studio-code module windows-10 latex
2个回答
3
投票

如果您使用 ActiveState 平台,您可以简单地:

    state install yaml-tiny

如果您不使用它,您可以通过在 CMD 提示符下运行以下命令,从 ActiveState 平台在 Windows 上安装最新版本的 Perl 5.32:

    powershell -Command "& $([scriptblock]::Create((New-Object Net.WebClient).DownloadString('https://platform.activestate.com/dl/cli/install.ps1'))) -activate-default ActiveState/Perl-5.32"

然后您可以为您需要的每个包运行以下命令(状态工具的工作方式就像 PPM):

    state install <packagename>

或者

    state import <CPANfile/Meta.json>

0
投票

对于 Linux Arch 用户。

sudo pacman -S perl-yaml-tiny sudo pacman -S perl-file-homedir

© www.soinside.com 2019 - 2024. All rights reserved.