DEV Community

Cover image for Introduce Autocomplete to JupyterLab with Kite
0xkoji
0xkoji

Posted on

Introduce Autocomplete to JupyterLab with Kite

JupyterLab
https://jupyter.org/

dev env

macOS BigSur Version 11.2.1
python 3.8.3

Install jupyterlab

$ pip install jupyterlab
Enter fullscreen mode Exit fullscreen mode

Install Kite

https://www.kite.com/

Install JupyterLab Kite and Jupyter extension

$ pip install "jupyterlab-kite>=2.0.2"
$ jupyter labextension install "@kiteco/jupyterlab-kite"
Enter fullscreen mode Exit fullscreen mode

Run JupyterLab

$ jupyter lab
Enter fullscreen mode Exit fullscreen mode

If you get an error, you may need to update jupyter-server to the latest version, 2.2.0

$ pip install jupyter-server
Enter fullscreen mode Exit fullscreen mode

Latest comments (0)