Blynk not working with Raspberry Pi 4 after installing all packages and Blynk library

Hi all, I installed all packages including node.js, and the Blynk library from git clone yet when importing the module from a script it still returns that there is no such module.

from gpiozero import LED
import BlynkLib
import time

led = LED(4)
auth = #my auth token from Blynk

@blynk.VIRTUAL_WRITE(1)

def my_write_handler(value):
    print(‘Current V1 value {}’.format(value))
    if int(value) == 1: 
        led.on()
    else: 
        led.off()

blynk.run()


Any help would be appreciated!