安装及详细使用方法介绍:
https://blog.csdn.net/qq_38451119/article/details/82428612
pip install imgaug 失败解决方法:
提示Command "python setup.py egg_info" failed with error code 1 in C:\Users\admi
发现是安装shapely包失败
pip install shapely不成功
python -m pip install --upgrade pip
更新pip版本后也不成功
自己去官网下载对应版本的包
https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely
安装
pip install E:\DeepLearning\Shapely-1.6.4.post1-cp36-cp36m-win_amd64.whl
再安装imgaug包
pip install imgaug
成功
原文:https://blog.csdn.net/sunflower_sara/article/details/86617380
原文:https://www.cnblogs.com/Allen-rg/p/10973851.html