Centos系统Docker安装mmdetection

使用Docker安装简直太amazing!

centos7系统下mmdetection环境搭建一文中的环境搭建和安装中共有二十左右各依赖需要一步步安装。转而使用Docker安装,写好DockerFile,执行一行命令即可解决,当然基本的显卡驱动需要安装好。

命令:docker build -t mmdetection docker/

DockerFile代码:

ARG PYTORCH="1.3"
ARG CUDA="10.1"
ARG CUDNN="7"

FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel

ENV TORCH_CUDA_ARCH_LIST="6.0 6.1 7.0+PTX"
ENV TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../"

RUN apt-get update && apt-get install -y libglib2.0-0 libsm6 libxrender-dev libxext6 \
 && apt-get clean \
 && rm -rf /var/lib/apt/lists/*

# Install mmdetection
RUN conda clean --all
RUN git clone https://github.com/open-mmlab/mmdetection.git /mmdetection
WORKDIR /mmdetection
ENV FORCE_CUDA="1"
RUN pip install --no-cache-dir -e .

之后所有的开发、试验、训练和测试在容器中进行即可,前提是必须熟练docker!

你可能感兴趣的:(mmdetection,docker)