解决Pycharm安装:pycocotools失败

解决办法:
1. 直接使用命令安装: pip install git+https:github.com/philferriere/cocoapi.git#subdirectory=PythonAPI

2. 先编译后安装:
git clone https://github.com/pdollar/coco.git
cd coco/PythonAPI
python setup.py build_ext --inplace #安装到本地
python setup.py build_ext install # 安装到Python环境中

你可能感兴趣的:(杂集汇总)