NCCL和MMCV和mmdetection安装

NCCL和MMCV和mmdetection安装

下载地址,根据需要选择版本,安装最好还是选择本地安装

本地安装

sudo dpkg -i nccl-repo-ubuntu1604-2.4.8-ga-cuda10.0_1-1_amd64.deb
sudo apt updata 		# 更新APT数据库

如果需要使用NCCL编译程序,需要安装libnccl-dev软件包

注意:如果直接使用如下命令,会将CUDA更新至最高版本

  sudo apt install libnccl2 libnccl-dev

如果不想更新CUDA,可以指定版本安装,如:

sudo apt install libnccl2=2.0.0-1+cuda8.0 libnccl-dev=2.0.0-1+cuda8.0

安装mmdetection

git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
# ./compile.sh  # CUDA编译
python setup.py install

你可能感兴趣的:(学习笔记,学习环境搭建,深度学习)