Package not found issue when executing ops

(pythonvenv) [xxxxxxxxx@fedora ops_test]$ ops version
Ops version: 0.1.32
Nanos version: 0.0
(pythonvenv) [xxxxxxxxx@fedora ops_test]$ ops pkg load python_3.6.7 -a hello.py
100% |████████████████████████████████████████| [0s:0s]
package not found

Ops packages have now a namespace associated to them, so the ops pkg load command must contain the namespace as well as the name of the
package, using the notation <namespace>/packagename>. In your case,
the correct command line would be ops pkg load eyberg/python_3.6.7 -a hello.py.
The ops pkg list command shows you see a list of available packages
together with their associated namespace.

Tried it with the namespace, same results.

[xxxxxxxxxx@fedora ~]$ ops version
Ops version: 0.1.32
Nanos version: 0.0
[xxxxxxxxxx@fedora ~]$ ops pkg load eyberg/python_3.6.7 -a hello.py
100% |████████████████████████████████████████| [0s:0s]
package not found

Tried another package and program and go this.
I installed via the method it describes.

ops pkg load eyberg/python:3.10.6 -a hi.py
100% |████████████████████████████████████████| [0s:0s]
100% |████████████████████████████████████████| [10s:0s]
No hypervisor found on $PATH
Please install OPS using curl https://ops.city/get.sh -sSfL | sh

Ok, I got the issue solved.
Needed to install “qemu”.

Works fine now, thanks.