TypeError: hailo_platform.pyhailort._pyhailort.Device: No constructor defined!

(hailo_env38) pinky@pinky:~/yolov5$ PYTHONPATH=~/hailo_model_zoo python3 infer_yolo_hailo_stream.py

    This CPU does not support `avx` instructions, and they are needed to run Tensorflow.
    It is recommended to run the Dataflow Compiler on another host.
    Another option is to compile Tensorflow from sources without `avx` instructions.

Traceback (most recent call last):
File “infer_yolo_hailo_stream.py”, line 11, in
device = pyhailort.Device(“/dev/hailo0”)
TypeError: hailo_platform.pyhailort._pyhailort.Device: No constructor defined!

I tried
device = pyhailort.Device(“hailo0”)
device = pyhailort.Device()
device = pyhailort.Device(“hailo8l”)
device = pyhailort.Device(“”)
device = pyhailort.Device.create(“/dev/hailo0”)
device = pyhailort.Device.create(“hailo0”)
device = pyhailort.Device.create(“hailo8l”)
device = pyhailort.Device.create(“”)
device = pyhailort.Device.create()
but the same error appeared..