Files
Mofox-Core/run.bat
2025-03-09 20:02:59 +08:00

10 lines
257 B
Batchfile

@ECHO OFF
chcp 65001
if not exist "venv" (
python -m venv venv
call venv\Scripts\activate.bat
pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple --upgrade -r requirements.txt
) else (
call venv\Scripts\activate.bat
)
python run.py