swin_transfrom遇到的No module named ‘pycocotools‘解决办法

这个问题我试了各种安装方法都没有安装成功,最后仔细读了git源码

conda create -n openmmlab python=3.7 -y
conda activate openmmlab

conda install pytorch==1.6.0 torchvision==0.7.0 cudatoolkit=10.1 -c pytorch -y

# install the latest mmcv
pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu101/torch1.6.0/index.html

# install mmdetection
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
pip install -r requirements/build.txt
pip install -v -e .

注意这里的最后以后,应该是对代码进行编译

swin_transfrom遇到的No module named ‘pycocotools‘解决办法

 

swin_transfrom遇到的No module named ‘pycocotools‘解决办法

 按照这样的方式就可以成功。有问题欢迎交流

上一篇:CV基石-GoogleNet-V4论文研读


下一篇:Pytorch-搭建网络框架(二)