Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on nbconvert

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. Converting too many notebooks at the same (multiprocessing) causes zmq.error.ZMQError: Address already in use. The simple way to fix this issue is to limit the number of processes converting …

Useful Tools and Extensions for JupyterLab

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Install/Uninstall Jupyter/Lab Extensions

Install a Jupyter/Lab extension.

pip3 install extension_name

Unnstall a Jupyter/Lab extension.

pip3 uninstall extension_name

Enable an installed Jupyter/Lab extension. Note: An extension is …

Tips on Jupyter-Book

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

xinstall jb -ic

Configuration

xinstall jb -c creates a copy of configuration file _config.yml in the current directory. By default, The configuration file _config.yml in the current directory (if …

Jupyter Notebook Kernels

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Jupyter Kernels

By default, Python kernels are installed to /usr/local/share/jupyter/kernels and BeakerX kernels are installed to /usr/share/jupyter/kernels.

Python

ipykernel

IPython Kernel for Jupyter/Lab …