我正在尝试使用混合模式模块和来自此链接https://pythonhosted.org/blend_modes/的示例。我使用pip安装了混合模式(在页面中给出了),但我仍然收到这个错误。你知道怎么解决这个问题吗?
出现错误的行:
from blend_modes import blend_modes错误:
ImportError: cannot import name 'blend_modes' from 'blend_modes' (C:\Users\user1\anaconda3\lib\site-packages\blend_modes\__init__.py)谢谢。
发布于 2021-09-12 21:37:26
您所指出的文档似乎有be。最好阅读GitHub (https://github.com/flrs/blend_modes/#usage)或https://blend-modes.readthedocs.io/en/latest/上提供的版本。
你会发现一个库导入的例子:
from blend_modes import soft_lighthttps://stackoverflow.com/questions/69155227
复制相似问题