# DeepCoin CLI wrapper — conda 환경 ncue 고정 # 사용: .\scripts\run.ps1 06_execute_live.py --once param( [Parameter(Mandatory = $true, Position = 0)] [string]$Script, [Parameter(ValueFromRemainingArguments = $true)] [string[]]$Rest ) $ErrorActionPreference = "Stop" $root = Split-Path $PSScriptRoot -Parent Set-Location $root $env:PYTHONUNBUFFERED = "1" $scriptPath = Join-Path $root "scripts" $Script if (-not (Test-Path $scriptPath)) { throw "스크립트 없음: $scriptPath" } & conda run -n ncue --no-capture-output python $scriptPath @Rest