EG/RenderPipelineFile/start_plugin_configurator.py
2025-11-06 10:30:39 +08:00

13 lines
455 B
Python

#!/usr/bin/env python
import os
import sys
import subprocess
this_dir = os.path.dirname(os.path.realpath(__file__))
if not os.path.isfile(os.path.join(this_dir, "data", "install.flag")):
print("Please install the pipeline first by running setup.py")
sys.exit(-1)
to_execute = os.path.join(this_dir, "toolkit", "plugin_configurator", "main.py")
# 使用相对路径而不是绝对路径
subprocess.call([sys.executable, to_execute], cwd=this_dir)