回答編集履歴
1
追記
answer
CHANGED
@@ -1,5 +1,32 @@
|
|
1
1
|
`jupyter notebook`はサーバーとして動作します。
|
2
2
|
よってブラウザ上で`Logout`しても`jupyter notebook`は新たな`Login`の待ち受け状態のまま動作し続けています。
|
3
3
|
|
4
|
+
起動時のメッセージ
|
5
|
+
`Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).`
|
6
|
+
と記載されている通り
|
4
7
|
`jupyter notebook`を終了したい場合は、起動したコマンドプロンプト上でCtrl+Cキーを入力してください。
|
5
|
-
入力可能な状態に戻ります。
|
8
|
+
入力可能な状態に戻ります。
|
9
|
+
```DOS
|
10
|
+
C:\Windows\system32>jupyter notebook
|
11
|
+
[I 13:14:53.450 NotebookApp] [nb_conda_kernels] enabled, 6 kernels found
|
12
|
+
[I 13:15:14.587 NotebookApp] [nb_anacondacloud] enabled
|
13
|
+
[I 13:15:14.686 NotebookApp] [nb_conda] enabled
|
14
|
+
[I 13:15:15.885 NotebookApp] \u2713 nbpresent HTML export ENABLED
|
15
|
+
[W 13:15:15.903 NotebookApp] \u2717 nbpresent PDF export DISABLED: No module named 'nbbrowserpdf'
|
16
|
+
[I 13:15:16.320 NotebookApp] Serving notebooks from local directory: C:/~
|
17
|
+
[I 13:15:16.320 NotebookApp] 0 active kernels
|
18
|
+
[I 13:15:16.321 NotebookApp] The Jupyter Notebook is running at:
|
19
|
+
[I 13:15:16.321 NotebookApp] http://localhost:8888/?token=~
|
20
|
+
[I 13:15:16.321 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
|
21
|
+
[C 13:15:16.328 NotebookApp]
|
22
|
+
|
23
|
+
Copy/paste this URL into your browser when you connect for the first time,
|
24
|
+
to login with a token:
|
25
|
+
http://localhost:8888/?token=~
|
26
|
+
[I 13:15:16.695 NotebookApp] Accepting one-time-token-authenticated connection from ::1
|
27
|
+
(Ctrl+Cキーが入力された)
|
28
|
+
[I 13:17:11.328 NotebookApp] Interrupted...
|
29
|
+
[I 13:17:11.328 NotebookApp] Shutting down 0 kernels
|
30
|
+
|
31
|
+
C:\Windows\system32>
|
32
|
+
```
|