#### Install QEMU Install recent version of QEMU. v6.1.0 or later is recommended. On ARM hosts, a [patched](https://patchwork.kernel.org/series/548227/mbox/) version of QEMU has to be installed for enabling `-accel hvf` support. The patch was merged into the master branch on [2021-09-21](https://github.com/qemu/qemu/commit/81ceb36b9) and will be included in QEMU v6.2.0. The patch is already cherry-picked in [the Homebrew package of QEMU](https://github.com/Homebrew/homebrew-core/commit/5e8eb547) since `6.1.0_1` bottle. #### Install Lima - Download the binary archive of Lima from https://github.com/lima-vm/lima/releases , and extract it under `/usr/local` (or somewhere else). For instance: ```bash brew install jq VERSION=$(curl -fsSL https://api.github.com/repos/lima-vm/lima/releases/latest | jq -r .tag_name) curl -fsSL https://github.com/lima-vm/lima/releases/download/${VERSION}/lima-${VERSION:1}-$(uname -s)-$(uname -m).tar.gz | tar Cxzvm /usr/local ``` - To install Lima from the source, run `make && make install`. > **NOTE** > Lima is not regularly tested on ARM Mac (due to lack of CI).