Last active
August 21, 2016 14:47
-
-
Save onelittlenightmusic/d560ccaaeb88e747dc651cd7881a24a9 to your computer and use it in GitHub Desktop.
bash on Windowsでjupyterを動かすときにちょっとハマった ref: http://qiita.com/onelittlenightmusic/items/2d012fbd04deb14f04c0
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
$ jupyter notebook | |
[W 23:02:29.351 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended. | |
[I 23:02:29.398 NotebookApp] The port 3000 is already in use, trying another port. | |
[I 23:02:29.398 NotebookApp] The port 3001 is already in use, trying another port. | |
[I 23:02:29.398 NotebookApp] The port 3002 is already in use, trying another port. | |
[I 23:02:29.398 NotebookApp] The port 3003 is already in use, trying another port. | |
・・・ |
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
c.NotebookApp.ip = '*' |
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
#c.NotebookApp.ip = '*' | |
c.NotebookApp.ip = '127.0.0.1' |
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
$ jupyter notebook | |
[I 23:08:18.647 NotebookApp] Serving notebooks from local directory: /****/tensorflow | |
[I 23:08:18.649 NotebookApp] 0 active kernels | |
[I 23:08:18.649 NotebookApp] The Jupyter Notebook is running at: http://127.0.0.1:3000/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment