Skip to content

Instantly share code, notes, and snippets.

@mychaelstyle
Last active December 16, 2018 04:13
Show Gist options
  • Save mychaelstyle/c404258c2b7189c8eada6e0d774da788 to your computer and use it in GitHub Desktop.
Save mychaelstyle/c404258c2b7189c8eada6e0d774da788 to your computer and use it in GitHub Desktop.
Install_pyenv_for_windows
# 先にDocker community edition for windowsを下記URLからダウンロードしてインストール
# https://store.docker.com/editions/community/docker-ce-desktop-windows
# jupyterの入ったdockerイメージをダウンロード
docker pull jupyter/datascience-notebook
# dockerでjupyter notebookを起動
docker run -d -p 8888:8888 -v "$(pwd):/home/jovyan/work" jupyter/datascience-notebook start-notebook.sh --NotebookApp.token=''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment