Skip to content

Instantly share code, notes, and snippets.

@mokemokechicken
Created February 23, 2016 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mokemokechicken/c980b63678cdc0684071 to your computer and use it in GitHub Desktop.
Save mokemokechicken/c980b63678cdc0684071 to your computer and use it in GitHub Desktop.
Dockerfile about jupyter + tensorflow
From jupyter/datascience-notebook
RUN curl -k -L -O https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl && \
mv tensorflow-0.7.1-cp34-none-linux_x86_64.whl tensorflow-0.7.1-cp35-none-linux_x86_64.whl
RUN pip install tensorflow-0.7.1-cp35-none-linux_x86_64.whl
RUN /bin/bash -c "source activate /opt/conda/envs/python2/ && pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment