Install Windows CUDA runtime for STT

This commit is contained in:
2026-04-30 17:59:29 +09:00
parent 60dce65b0f
commit 4c7cef8c18
4 changed files with 77 additions and 8 deletions

View File

@@ -109,6 +109,9 @@ async function main(): Promise<void> {
});
console.log("로컬 AI 의존성 설치를 시작합니다.");
if (process.platform === "win32") {
console.log("Windows GPU STT용 CUDA 런타임 패키지도 함께 확인합니다.");
}
await run(venvPython, ["-m", "pip", "install", "--upgrade", "pip", "setuptools", "wheel"], baseEnv);
await run(venvPython, ["-m", "pip", "install", "-r", requirementsPath], baseEnv);
if (process.platform !== "win32") {