-
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: 4 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.
What's needed is only:
$ curl -L https://nixos.org/nix/install | sh -s -- --daemon
then open a new terminal and type:
$ nix-env -iA nixpkgs.podman
You can verify by typing:
(you may need to also install
sudo apt install uidmap
)