08_17-AirCARE/bigwork/start_app.ps1

11 lines
502 B
PowerShell
Raw Permalink Normal View History

# 修复 PATH 环境变量
Write-Host "正在修复 PATH 环境变量..." -ForegroundColor Green
$env:PATH = $env:PATH.Replace('C:;Users', 'C:\Users').Replace(';%S;stemRoot%', ';%SystemRoot%')
# 切换到项目目录
Write-Host "切换到项目目录..." -ForegroundColor Green
Set-Location "d:\HuaweiMoveData\Users\马艺洁\Desktop\MLwork\bigwork"
# 使用 UV 启动 Streamlit 应用
Write-Host "使用 UV 启动 Streamlit 应用..." -ForegroundColor Green
uv run streamlit run src/streamlit_app.py