Last active
December 16, 2018 04:13
-
-
Save mychaelstyle/c404258c2b7189c8eada6e0d774da788 to your computer and use it in GitHub Desktop.
Install_pyenv_for_windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 先に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