File size: 290 Bytes
09b5e10
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
chcp 65001 > nul

setlocal
title Vietnamese RVC (Windows)

if exist "runtime\python.exe" (
    runtime\python.exe main\app\app.py --open --allow_all_disk
) else if exist "env\\Scripts\\python.exe" (
    env\Scripts\python.exe main\app\app.py --open --allow_all_disk
)

echo.
pause