from PIL import Image
from rembg import remove
import glob
import os
input = Image.open(file)
output = remove(input)
output.save(f"{file}.png")
Почему код выдает ошибку, хотя файл llvmlite.dl находится в указанном каталоге?
"
OSError: Could not find/load shared object file: llvmlite.dll Error was: Could not find 'C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\llvmlite\binding\llvmlite.dll' module (or one of its dependencies). Try using the full path with constructor syntax."
Пробовал переустановку, добавил путь к llvmlte.dll в переменную окружения path, оба метода не сработали.