2021年08月02日 jupyter notebookで起動するブラウザをオプション込で設定する方法 [長年日記]
_ jupyter notebookで起動するブラウザをオプション込で設定する方法
$ jupyter notebook --generate-config $ vim ~/.jupyter/jupyter_notebook_config.py
~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.browser = '/usr/local/firefox/firefox %s -P prof1'
2021年08月03日 jupyter notebookでデフォルトの作業フォルダを設定する方法 [長年日記]
_ jupyter notebookでデフォルトの作業フォルダを設定する方法
作業フォルダそのものはシェルからコマンドで作成する。
$ mkdir ~/src $ mkdir ~/src/jupyter
設定ファイルを作成し、設定する。
$ jupyter notebook --generate-config $ vim ~/.jupyter/jupyter_notebook_config.py
~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.notebook_dir = '/home/m-ito/src/jupyter/'
jupyter notebookで実行(Run)出来ない場合の対処
jupyter notebookで実行(Run)しても、新しいセルが挿入されるだけで、何も実行されない場合がある。
そんな場合は、カーネルとやらとの接続がうまくできていない可能性があるので、「カーネル」→「再接続」を行ってみると回復するかも...
2021年08月29日 How to get best quality movie by youtube-dl [長年日記]
_ yourtbe-dlで最高画質で動画を取得する方法
youtube-dl --no-playlist -f bestvideo+bestaudio --merge-output-format mp4 'https://www.youtube.com/hogehoge'