假如想安装的版本是mmcv1.4.0, 但是pip install mmcv1.4.0总是失败,若是直接pip install mmcv会安装成功,但是安装的就是最新版本,后面代码跑起来还会报错,怎么办呢?
接下来分享一个mmcv指定版本安装的方式。
网页: https://mmcv.readthedocs.io/zh-cn/1.x/get_started/installation.html#
首先查找本机对应安装的torch版本
python -c 'import torch;print(torch.__version__);print(torch.version.cuda)'
然后在网页https://mmcv.readthedocs.io/zh-cn/1.x/get_started/installation.html#上选择对应的版本号。
复制安装命令
pip install mmcv==1.4.0 -f https://download.openmmlab.com/mmcv/dist/cu113/torch1.10/index.html
就能成功安装啦。