2022年7月3日日曜日

Jupyter Notebook入れ直したときのメモ

jupyter入れ直したらハマったのでメモ

installしようとしたらPermission denied 

pipenv install jupyter_contrib_nbextensions && jupyter contrib nbextension install

したら

[Errno 13] Permission denied: '/usr/local/share/jupyter'

というエラー。

pipenv install jupyter_contrib_nbextensions && jupyter contrib nbextension install  --user

というように --user をつけてインストールしたらOK

https://github.com/Calysto/matlab_kernel/issues/68

ChromeでJupyterが日本語になっている

Chromeの言語設定から日本語を外してEnglishだけにした

https://stackoverflow.com/questions/52667314/jupyter-notebook-is-displayed-partially-in-french


Did you mean one of: `extra_template_paths, template_name, template_paths`?

起動時、こういうエラーが大量に出る

Config option `template_path` not recognized by `ExporterCollapsibleHeadings`.  Did you mean one of: `extra_template_paths, template_name, template_paths`?

nbconvertのバージョンが上がりすぎ?で対応できていないようで

nbconvert = "==5.6.1"

にすればよいらしい。

https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1529

これを下げると、jinja2で500エラーが出るので、6.5に戻した。

ImportError: cannot import name 'contextfilter' from 'jinja2' 

jupyter notebookは開くが、その後500エラーになる。

jinja3.1.2 でエラー。3.0.0で入れ直したが、NG


nbconvertを5.6.1に下げていたので6.5.0に上げたら直った。(template_pathsは直っていない)

こちらのコメントでは直っていないようだ
https://github.com/BIG-MAP/PRISMA/issues/2

pipenv.vendor.toml.decoder.TomlDecodeError: Found tokens after a closed string. Invalid TOML. (line 8 column 1 char 102)

Pipfile に余計な文字が混ざっていた

0 件のコメント:

コメントを投稿