Installing incus-agent inside a vm Fedora 41

So I have the neccesity of creating a vm running Fedora 41 for educational services. I followed the instructions in How to create instances - Incus documentation

I was able to make it through the whole process but when it comes to installing the agent I get the following:

ValueError: File spec /var/run/incus_agent/incus-agent conflicts with equivalency rule '/var/run /run'; Try adding '/run/incus_agent/incus-agent' instead

After this I do get a incus-agent message installed but the service is down and cant use systemctl to raise it.
Do I need to manually install incus-agent from the repo first?

I am using these instructions to install:
mount -t 9p config /mnt
cd /mnt
./install.sh

I tried using symlink as a workaround, but it did not work.
mkdir -p /run/incus_agent
ln -s /run/incus_agent /var/run/incus_agent

Try running:

semanage fcontext -a -t bin_t /run/incus_agent/incus-agent

Gave it a quick try, but got an error.

[root@fedora mnt]# semanage fcontext -a -t bin_t /run/incus_agent/incus-agent
ValueError: SELinux policy is not managed or store cannot be accessed.

Tried executing the script again,
[root@fedora mnt]# ./install.sh
Installing agent into /usr/lib
ValueError: SELinux policy is not managed or store cannot be accessed.

Incus agent has been installed, reboot to confirm setup.
To start it now, unmount this filesystem and run: systemctl start incus-agent

At this point I think I am just going to use the image of the incus repo instead of trying to manually install though.