Replies: 3 comments 7 replies
-
podman-desktop is a different project and it might be worth asking over there as well. @l0rd any ideas here? |
Beta Was this translation helpful? Give feedback.
-
It's hard to tell without logs. It's the first time I see such error. The screenshot is from the 4.6.1 installer. @aarmn did you get a similar error if trying the 5.4.0 installer? You may want to use this command from a terminal to generate some logs with more details:
|
Beta Was this translation helpful? Give feedback.
-
It can happen to have some inconsistencies in the MSI databases. What I do to remove every Podman installation is executing this commands from a terminal: $Installer = New-Object -ComObject WindowsInstaller.Installer;
$InstallerProducts = $Installer.ProductsEx("", "", 7);
$InstalledProducts = ForEach($Product in $InstallerProducts){
[PSCustomObject]@{ProductCode = $Product.ProductCode();
LocalPackage = $Product.InstallProperty("LocalPackage");
VersionString = $Product.InstallProperty("VersionString");
ProductName = $Product.InstallProperty("ProductName")
}
};
$InstalledProducts | Where-Object {$_.ProductName -match "podman"} and uninstall it with |
Beta Was this translation helpful? Give feedback.
-
Hey Podman Community,
A few days ago, I tried updating Podman to the latest version using Podman Desktop, but the process failed. Now, I'm stuck with two installations: one that's half-complete and another that's working (4.x is fine, but 5.x isn't). Every time I try to install the latest version, I get an error, even though I have around 20GB free on my C: drive and plenty of space on my D: drive. FYI, my D: drive is BTRFS (using WinBtrfs), but I doubt that's causing the issue.
I'd love some guidance on manually uninstalling the current versions, or any workarounds to get rid of 4.x and successfully install 5.x. If anyone has faced this issue or knows a fix to avoid this error during installation, please share your insights!
Thanks a bunch in advance!
Beta Was this translation helpful? Give feedback.
All reactions