Files
TRELLIS.2/data_toolkit/blender_script/install_pillow.py
2026-01-10 09:47:30 +00:00

6 lines
142 B
Python
Executable File

import subprocess
import sys
import ensurepip
ensurepip.bootstrap()
subprocess.check_call([sys.executable, "-m", "pip", "install", "Pillow"])