设置 --shell-escape 后,minted 找不到 pygments.sty

设置 --shell-escape 后,minted 找不到 pygments.sty

当我pygmentize -V在终端运行时我得到

Pygments version 2.3.1, (c) 2006-2017 by Georg Brandl.

我的选项 -> 配置 TexStudio -> 命令 -> PdfLaTeX 设置为

pdflatex -synctex=1 -interaction=nonstopmode --shell-escape %.tex

我尝试编译时收到的第一个错误日志是: File `pygments.sty' not found.

我知道与此相关的问题有很多,但我已经查阅了大部分问题,却没有任何解决方案。

我的进口顺序如下

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{minted}
\usepackage{graphicx}
...

我尝试运行时收到的消息是

Error: Could not start the command: PdfLaTeX

公平地说,我无法让错误消息消失。即使删除了所有内容,尝试编译时日志和错误消息仍然存在。我可能已经严重破坏了某些东西。

编辑

显然编译器配置错误或类似问题。删除所有内容并尝试构建后,它显示

Error: Could not start the command: Compile & View

即使在恢复默认命令后pdflatex -synctex=1 -interaction=nonstopmode %.tex,也要确保它是默认编译器PdfLaTeX并删除所有辅助文件。

即使整个文件是

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\begin{document}
    \section{Introduction}
    
\end{document}

它无法编译。

相关内容