mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/58199 Signed-off-by: Eli Uriegas <eliuriegas@fb.com> Test Plan: Imported from OSS Reviewed By: malfet Differential Revision: D28465272 Pulled By: seemethere fbshipit-source-id: d221ad71d160088883896e018c58800dae85ff2c
10 lines
421 B
PowerShell
10 lines
421 B
PowerShell
# Source install utils
|
|
. $PSScriptRoot\windows_install_utils.ps1
|
|
|
|
# Install Windows 10 SDK version 10.0.14393.795
|
|
$sdkUrl = "https://go.microsoft.com/fwlink/p/?LinkId=838916"
|
|
$sdkFileName = "sdksetup14393.exe"
|
|
$argumentList = ("/q", "/norestart", "/ceip off", "/features OptionId.WindowsSoftwareDevelopmentKit")
|
|
Write-Output "Installing $sdkUrl"
|
|
Install-Binary -Url $sdkUrl -Name $sdkFileName -ArgumentList $argumentList
|