在运行samples中的demo.ipynb过程中,需要import
imgaug 这个用于数据增强的库文件。解决方法是先下载这个库文件(imgaug地址:imgaug),我将其放在anaconda目录下,然后运行如下命令——
python setup.py sdist && sudo pip install dist/imgaug-VERSION.tar.gz
就完成了imgaug库文件的安装,这时候import
imgaug就没问题了。
接下来是提示importError: No module named 'pycocotools',
用
COCO
数据集训练需要用到
pycocotools
这个第三方库,网上相关博客给出了用pip安装。可能遇到的错误类型及解决方法如下:
尝试用pip安装,出错:
查阅网上资料,得知是编码问题,解决方案是将.\Lib\site-packages\pip\compat\__init__.py中的第75行更改为‘gbk’:
修改完成后pip安装,再次出错:
找到cl.exe文件运行,报错0xc000007b问题,于是下载DirectX Repair软件修复,0xc000007b问题解决,可还是无法安装。从此开始不停作死:尝试用conda或pip安装离线包;卸载vs2015;升级为vs2017......始终解决不了问题,绞尽了脑汁。后来在某博客看到相关信息:
原来pycocotools作者压根就没考虑windows版本!!!!!
本来已经死心,但还是点进链接,到github上看看其他人是怎么应对这个问题。惊喜的发现,原来已经大佬改写出了windows下的版本!!!!
其中cocoapi是coco数据集api的缩写,下载地址:https://github.com/cocodataset/cocoapi
按照教程,命令行输入
install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
,
安装成功!!!!
But!!!!!!!!
- 获取源码
git clone https://github.com/pdollar/coco.git
- 编译
cd coco/PythonAPI
# install pycocotools locally python setup.py build_ext --inplace # install pycocotools to the Python site-packages python setup.py build_ext install
我编译时选择的是 python setup.py build_ext install
参考——
imgaug安装使用详细:https://blog.csdn.net/u012897374/article/details/80142744
pycocotools安装问题:https://blog.csdn.net/gxiaoyaya/article/details/78363391