[2026-05-27] 포맷 후 복구 설치 스크립트 추가
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$Root = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)
|
||||
Set-Location $Root
|
||||
|
||||
$Python = "python"
|
||||
$Requirements = Join-Path $Root "requirements.txt"
|
||||
$Wheelhouse = Join-Path $Root "vendor\wheels"
|
||||
|
||||
New-Item -ItemType Directory -Force -Path $Wheelhouse | Out-Null
|
||||
|
||||
Write-Host "[download] saving packages to $Wheelhouse"
|
||||
& $Python -m pip download -r $Requirements -d $Wheelhouse
|
||||
Reference in New Issue
Block a user