File size: 255 Bytes
f25a759
 
b86b333
 
 
 
 
f25a759
1
2
3
4
5
6
7
8
import subprocess

try:
    subprocess.check_call(['pip', 'install', '-r', 'requirements.txt'])
except subprocess.CalledProcessError as e:
    print(f"An error occurred while installing packages: {e}")

subprocess.run(['python', 'voicevox_engine/run.py'])