本文主要是介绍Ubuntu编译pycocotools,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#首先将coco工具下载下来
git clone https://github.com/pdollar/coco.git
#切换到Python 对应的API文件夹
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
这篇关于Ubuntu编译pycocotools的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!