Files
damai/win一件运行.bat
Jeason b16a782f67
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
new changes
2026-03-13 12:05:03 +08:00

16 lines
339 B
Batchfile

@echo off
REM Step 1: 创建 conda 虚拟环境 python3.12 命名为 joker
conda create --name joker python=3.12 -y
REM Step 2: 激活虚拟环境
conda activate joker
REM Step 3: 安装依赖包
pip install -r requirements.txt
REM Step 4: 运行 gui.py
python gui.py
REM Step 5: 保持命令行窗口打开,直到用户关闭
pause