pip 安装imgaug报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the log

pip 安装imgaug报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the log_第1张图片定位应该是安装shapely出错,手动去下载安装。https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely

pip install  e:xxxxxx/xxxx/Shapely-1.6.4.post2-cp37-cp37m-win_amd64.whl

安装时若报错

ERROR: setproctitle-1.1.10-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.

则需要查看 pip 对应的文件还有版本名是否正确

import pip._internal

print(pip._internal.pep425tags.get_supported())

下载pip版本对应的sharply包即可。

最后 pip install imgaug

 

你可能感兴趣的:(pip 安装imgaug报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the log)