check latex in PATH

This commit is contained in:
binary-husky 2023-06-06 00:23:00 +08:00
parent f23b66dec2
commit ddeaf76422

View File

@ -134,8 +134,8 @@ def Latex英文纠错加PDF对比(txt, llm_kwargs, plugin_kwargs, chatbot, histo
# <-------------- check deps -------------> # <-------------- check deps ------------->
try: try:
import glob, os, time import glob, os, time, subprocess
os.system(f'pdflatex -version') subprocess.Popen(['pdflatex', '-version'])
from .latex_utils import Latex精细分解与转化, 编译Latex from .latex_utils import Latex精细分解与转化, 编译Latex
except Exception as e: except Exception as e:
chatbot.append([ f"解析项目: {txt}", chatbot.append([ f"解析项目: {txt}",
@ -204,8 +204,8 @@ def Latex翻译中文并重新编译PDF(txt, llm_kwargs, plugin_kwargs, chatbot,
# <-------------- check deps -------------> # <-------------- check deps ------------->
try: try:
import glob, os, time import glob, os, time, subprocess
os.system(f'pdflatex -version') subprocess.Popen(['pdflatex', '-version'])
from .latex_utils import Latex精细分解与转化, 编译Latex from .latex_utils import Latex精细分解与转化, 编译Latex
except Exception as e: except Exception as e:
chatbot.append([ f"解析项目: {txt}", chatbot.append([ f"解析项目: {txt}",