You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
|
|
:: 启动 Flask 服务器
|
|
start "" D:\anaconda3\envs\py310\python.exe Start.py
|
|
|
|
:: 等待几秒钟,确保 Flask 服务器启动
|
|
timeout /t 3
|
|
|
|
:: 打开默认浏览器访问 Flask 服务器
|
|
explorer "http://127.0.0.1:5000"
|