Fix python 10 install error

pull/9321/head
Jie Luo 3 years ago committed by GitHub
parent 338863f043
commit 911c940569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      kokoro/release/python/windows/install_python_interpreters.ps1

@ -97,7 +97,7 @@ $Python39x64Config = @{
Install-Python @Python39x64Config
# Python 3.10
$Python39x86Config = @{
$Python310x86Config = @{
PythonVersion = "3.10.0"
PythonInstaller = "python-3.10.0"
PythonInstallPath = "C:\python310_32bit"
@ -105,7 +105,7 @@ $Python39x86Config = @{
}
Install-Python @Python310x86Config
$Python39x64Config = @{
$Python310x64Config = @{
PythonVersion = "3.10.0"
PythonInstaller = "python-3.10.0-amd64"
PythonInstallPath = "C:\python310"

Loading…
Cancel
Save