Jupyter,Python

Thumbnail of post image 105

Dockerでjupyter notebookを動かすときには,単に,jupyter notebookと打つのではなく,少々設定が必要である.

まずは設定ファイルを作成

jupyter notebook --gene ...

Jupyter,Python

Thumbnail of post image 008
from IPython.display import display, Markdown, Latexdisplay(Markdown('*some markdown* $\phi$'))display(Latex('\phi'))x = ...

Jupyter

Thumbnail of post image 144

Jupyter notebook初回起動の際,正しいトークンを入力しているにも関わらずinvalid credentialが出るときには以下を試してみよう.

configを生成.もし既に存在していて,上書きの確認が ...

Jupyter

Thumbnail of post image 005

jupyter notebook や jupyter labを2回以上起動すると,最初はデフォルトのポート8888で起動するのに,2回目以降は8889とか8890で起動するという困ったことがある.

そんな時は以下のコマンド ...

Jupyter

Thumbnail of post image 103

jupyter lab --no-browser --port=8888 --ip=0.0.0.0 --allow-root &

Control+C を押してもサーバーが止まることは無くなる.

しかし,Jupyter ...

Jupyter

Thumbnail of post image 007

jupyter notebook --port=8888 --ip=0.0.0.0 --allow-root

AWS,Jupyter

Thumbnail of post image 196

AWSにサーバーを立てて、Jupyterをインストールした時のことをレポート。

まずは、LightsailでAWSにサーバーを立てる。

Lightsailサーバーのインストール自体はすごく簡単で、料金も月3.5 ...