File size: 481 Bytes
3b7b011
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os 
os.system("python pip install pedalboard")
shell_script = './install_Applio.sh'
os.system(f'chmod +x {shell_script}')
try:
    return_code = os.system(shell_script)
    if return_code == 0:
        print("Shell script executed successfully.")
    else:
        print(f"Shell script failed with return code {return_code}")
except Exception as e:
    print(f"An error occurred: {e}")



os.system("python -m sklearnex infer-web.py --pycmd python --port 7897 --theme dark")