Installing Mojo via Magic on Ubuntu 22.04 LTS via WSL

Hello, when I follow Get Started with Mojo instructions I am able to successfully complete Step 1 a and b below but then get stuck on part c.
step 1.
a. curl -ssL https://magic.modular.com/bfd2f286-11b1-4fee-bd2b-6be5b473699e | bash
b. magic init life --format mojoproject
c. magic run mojo --version
The current system has a mismatching virtual package. The project requires ‘__linux’ to be at least version
│ ‘4.18’ but the system has version ‘4.4.0’
image

Any help would be greatly appreciated!

mojoproject.toml contents

[project]
channels = [“conda-forge”, “https://conda.modular.com/max”]
description = “Add a short description here”
name = “life”
platforms = [“linux-64”]
version = “0.1.0”

[tasks]

[dependencies]
max = “>=24.6.0,<25”

Looks like your system is using an older linux kernel version. Include this in your mojoproject.toml:

[system-requirements]
linux = "4.4"

and probably need to add this libc too if that didn’t work

[system-requirements]
linux = "4.4"
libc = { family = "glibc", version = "2.28" }