Failed path resolution on external tool called by latex compiler #3762
-
Type of JetBrains IDE (IntelliJ, PyCharm, etc.) and versionIntellij idea community edition 2024.2.3 Operating SystemUbuntu TeXiFy IDEA version0.9.8 What I did (steps to reproduce)Compile the following code sample with pdflatex from texlive distribution with -shell-escape flag via IDE run configuration. Minimal example to reproduce the problem\documentclass{article}
\usepackage{minted}
\begin{document}
\end{document} Expected behaviorIt compiles Actual behaviorIt does not (output attached). It fails to find (if applicable) The full stacktrace of the exception thrown |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
How did you update your PATH? If it works in console but not in IntelliJ, apparently IntelliJ is not picking up your changes to your PATH (I assume you logged out and in after changing it). If you want to solve it within run configurations only, it might be possible but I would recommend to try to get your PATH correct for IntelliJ. |
Beta Was this translation helpful? Give feedback.
-
Oh, that really was the problem --- after I moved the path extension command from |
Beta Was this translation helpful? Give feedback.
Oh, that really was the problem --- after I moved the path extension command from
~/.bashrc
to~/.profile
, the problem vanished. Thank you!