AlenkaF commented on PR #47993:
URL: https://github.com/apache/arrow/pull/47993#issuecomment-3510077847
> I haven't followed your tests on the PR, was the problem with the Windows
wheels not being updated? or what was the issue?
The issue first was with downloading the manager with `Invoke-WebRequest`
which gave `404` error for the url while the same command for the build step
worked. Then I tried downloading with `curl` and then the `Add-AppxPackage`
command failed with
```
Add-AppxPackage : Deployment failed with HRESULT: 0x80073D19, An error
occurred because a user was logged off.
error 0x8007007E: Failed to load the extension DLL due to the following
error:
The specified module could not be found.
.
NOTE: For additional information, look for [ActivityId]
c521e281-c7bc-0003-9fbb-a47eb94fdc01 in the Event Log or use the command
line
Get-AppPackageLog -ActivityID c521e281-c7bc-0003-9fbb-a47eb94fdc01
At line:1 char:241
+ ... C:\Windows\pymanager.msix'; Add-AppxPackage C:\Windows\pymanager.msix
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified:
(C:\Windows\pymanager.msix:String)
[Add-AppxPackage], Exception
+ FullyQualifiedErrorId :
DeploymentError,Microsoft.Windows.Appx.PackageMa
nager.Commands.AddAppxPackageCommand
The command 'powershell -Command $ErrorActionPreference = 'Stop';
$ProgressPreference = 'SilentlyContinue'; $pymanager_url =
'https://www.python.org/ftp/python/pymanager/python-manager-25.0.msix';
Invoke-WebRequest -Uri $pymanager_url -OutFile 'C:\Windows\pymanager.msix';
Add-AppxPackage C:\Windows\pymanager.msix' returned a non-zero code: 1
```
It looks to me that the base setup for testing doesn't enable us to use the
same methods of installing the Python install manager as for the building.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]