Commit 5c44ca74 authored by Zhang Liliang's avatar Zhang Liliang Committed by Francisco Massa

Fix a bug in Docker file (#637)

Fix a bug.
Romove the echo command in line 36: RUN conda install pytorch-nightly cudatoolkit=${CUDA} -c pytorch 
To enable conda installation of pytorch-nightly.
parent f55844c9
...@@ -33,7 +33,7 @@ RUN pip install ninja yacs cython matplotlib opencv-python ...@@ -33,7 +33,7 @@ RUN pip install ninja yacs cython matplotlib opencv-python
# Install PyTorch 1.0 Nightly # Install PyTorch 1.0 Nightly
ARG CUDA ARG CUDA
RUN echo conda install pytorch-nightly cudatoolkit=${CUDA} -c pytorch \ RUN conda install pytorch-nightly cudatoolkit=${CUDA} -c pytorch \
&& conda clean -ya && conda clean -ya
# Install TorchVision master # Install TorchVision master
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment