-
|
I have tried almost all possible online tutorials, but I still can't install the latest podman on my Raspberry Pi 4B. I can only install up to version 4.3.1. I'm wondering if there is really a way to install >v4.7.0 or even v5.3.0? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 22 replies
-
|
You can run it in a virtual machine (like on macOS or Windows), or you can build it from source (although instructions are outdated). |
Beta Was this translation helpful? Give feedback.
-
|
how to install it natively in debian:bookworm/ubuntu? I don't want to use a virtual machine, just want to install latest version... |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
-
|
You can also use nix on debian. Personally I use home-manager. You just have to add it to your #home.nix
#...
packages = (with pkgs; [
podman
podman-compose
#docker-compose
]
#...podman --version
podman version 5.2.3 |
Beta Was this translation helpful? Give feedback.
-
|
I just vibe coded scripts to build the latest podman 5.8.0 on docker and export the built packages for debian 13 trixie and ubuntu 24.04 noble https://github.com/andrewtheguy/podman-package, so far I have only tested rootless mode with just the podman binary with systemd quadlets. Looks like it is not difficult to make the latest podman version packages for debian based distros at least, I just hope that the podman team can maintain package repo with the latest version for multiple mainstream distros like docker because lack of the ability to install the latest version easily on mainstream distros really hinders podman's adaption. |
Beta Was this translation helpful? Give feedback.
What's needed is only:
$ curl -L https://nixos.org/nix/install | sh -s -- --daemonthen open a new terminal and type:
$ nix-env -iA nixpkgs.podmanYou can verify by typing:
(you may need to also install
sudo apt install uidmap)