其他分享
首页 > 其他分享> > swin_transfrom遇到的No module named ‘pycocotools‘解决办法

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 .

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

 

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

标签:named,git,mmcv,No,mmdetection,swin,conda,install,pip
来源: https://blog.csdn.net/weixin_44199723/article/details/121763812