Skip to content

Instantly share code, notes, and snippets.

@MrHuxu
Created December 13, 2023 12:30
Show Gist options
  • Select an option

  • Save MrHuxu/bf7a01598d4feb64582ebc9dbf6e1c4a to your computer and use it in GitHub Desktop.

Select an option

Save MrHuxu/bf7a01598d4feb64582ebc9dbf6e1c4a to your computer and use it in GitHub Desktop.
dive into deep learning
FROM continuumio/miniconda3
EXPOSE 8888
RUN conda install jupyter -y --quiet
RUN conda install pytorch torchvision cpuonly -c pytorch -y --quiet
RUN pip3 install d2l
RUN mkdir -p /opt/notebooks
ENTRYPOINT [ "jupyter" ]
CMD [ "notebook" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment