Skip to content

Instantly share code, notes, and snippets.

@ando-takahiro
Created March 30, 2017 13:34
Show Gist options
  • Save ando-takahiro/08c11e5a87da9304afa3a0437c75fead to your computer and use it in GitHub Desktop.
Save ando-takahiro/08c11e5a87da9304afa3a0437c75fead to your computer and use it in GitHub Desktop.
FROM nvidia/cuda:8.0-cudnn5-devel
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
python-dev \
python-setuptools \
python-pip && \
pip install --upgrade pip && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
RUN pip install chainer==1.22.0
@ando-takahiro
Copy link
Author

If you got this error CURAND_STATUS_LAUNCH_FAILURE, when using official chainer docker image, above file would help you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment