1. case重现
笔者是python环境下安装albumentations出现的,该库经常用于图像增强,在cv领域有很大的知名度。在使用下边的命令进行安装后
pip install albumentations
就报了ERROR:Could not build wheels for opencv-python-headless which use PEP 517 and cannot be installed directly。文章来源:https://www.toymoban.com/news/detail-612619.html
2. 原因及解决方案
albumentations库依赖opencv,在直接使用pip命令安装时,albumentations会默认采用opencv-python-headless作为opencv的默认依赖进行安装,由于opencv系列有多个版本,所以我们可以选择绕开,将albumentations依赖的opencv指向已经安装好的opencv-python库。输入下面命令即可:文章来源地址https://www.toymoban.com/news/detail-612619.html
pip install albumentations --no-binary qudida,albumentations
到了这里,关于Could not build wheels for opencv-python-headless which use PEP 517 and cannot be installed directly的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!