环境
:win10,torch1.4-cpu
安装了很多次mmcv都报错
ERROR: Command errored out with exit status 1:
总归一堆红,正确安装姿势如下:
源码地址 https://github.com/open-mmlab/mmcv
大家根据自己的cuda版本,和torch版本,选择安装命令
点开 三角形▼
可以看见安装命令
pip install mmcv-full==latest+torch1.4.0+cpu -f https://download.openmmlab.com/mmcv/dist/index.html
然而还是不行,它说没找到匹配的版本,from括号里面的 才是可以选择的,
所以正确的安装命令为:pip install mmcv-full==1.1.5+torch1.4.0+cpu -f https://download.openmmlab.com/mmcv/dist/index.html
选择1.1.5+torch1.4.0(换成自己的torch版本)
.
.
Error
尝试这三种安装mmcv方式都报错
:
-
pip install mmcv
-
pip install mmcv -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
-
git clone https://github.com/open-mmlab/mmcv.git
cd mmcv
pip install .
pip安装后面没跟上--user 的报错如下
暂不追究原因,跟上–user,能安装成功即可