You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running into this dependency import issue when trying to import Remover on transparent_background==1.3.3
>>> from transparent_background import Remover Traceback (most recent call last): File "/usr/lib/python3.8/code.py", line 90, in runcode exec(code, self.locals) File "<console>", line 1, in <module> File "/opt/chairisher/env/lib/python3.8/site-packages/transparent_background/__init__.py", line 1, in <module> from transparent_background.Remover import Remover, console File "/opt/chairisher/env/lib/python3.8/site-packages/transparent_background/Remover.py", line 15, in <module> import albumentations as A File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/__init__.py", line 6, in <module> from .augmentations import * File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/augmentations/__init__.py", line 1, in <module> from .blur.functional import * File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/augmentations/blur/__init__.py", line 1, in <module> from .functional import * File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/augmentations/blur/functional.py", line 9, in <module> from albucore import clipped, float32_io, maybe_process_in_chunks, preserve_channel_dim ImportError: cannot import name 'float32_io' from 'albucore' (/opt/chairisher/env/lib/python3.8/site-packages/albucore/__init__.py)
When I revert back to transparent_background==1.3.2, the issue is resolved. Was this commit meant to address this issue: 70b851d?
The text was updated successfully, but these errors were encountered:
Hi @kwokster10, it seems the problem is happening outside of our package. albumentation was introduced by #56 to support cv2, numpy input directly. Maybe I have to look into it. Thanks for the report!
Hi,
I'm running into this dependency import issue when trying to import Remover on transparent_background==1.3.3
>>> from transparent_background import Remover Traceback (most recent call last): File "/usr/lib/python3.8/code.py", line 90, in runcode exec(code, self.locals) File "<console>", line 1, in <module> File "/opt/chairisher/env/lib/python3.8/site-packages/transparent_background/__init__.py", line 1, in <module> from transparent_background.Remover import Remover, console File "/opt/chairisher/env/lib/python3.8/site-packages/transparent_background/Remover.py", line 15, in <module> import albumentations as A File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/__init__.py", line 6, in <module> from .augmentations import * File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/augmentations/__init__.py", line 1, in <module> from .blur.functional import * File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/augmentations/blur/__init__.py", line 1, in <module> from .functional import * File "/opt/chairisher/env/lib/python3.8/site-packages/albumentations/augmentations/blur/functional.py", line 9, in <module> from albucore import clipped, float32_io, maybe_process_in_chunks, preserve_channel_dim ImportError: cannot import name 'float32_io' from 'albucore' (/opt/chairisher/env/lib/python3.8/site-packages/albucore/__init__.py)
When I revert back to transparent_background==1.3.2, the issue is resolved. Was this commit meant to address this issue: 70b851d?
The text was updated successfully, but these errors were encountered: