Reputation: 75
When I create a Debian instance in GCP AI Platform (Unified) Notebook to work with Jupyter Lab, I can't install kite (coding assistant).
I follow the steps from Kite Jupyter Lab Extension and it lets me install the kite engine, but when I do pip install "jupyterlab-kite>=2.0.2"
, it somehow detects the gcp builtin extensions as outdated, and makes them stop working. After that, tons of things start failing, for instance, trying to do jupyter lab build
doesn't work, etc.
Any help would be much appreciated!
Thank you :)
Upvotes: 1
Views: 142
Reputation: 10058
AI Platform Notebooks support JupyterLab 1.x, per your link this extension is supported for JupyterLab 2.x and 3.x. We are working in updating our JupyterLab version. What you can do is to use custom containers and have a custom JupyterLab version.
https://cloud.google.com/ai-platform/notebooks/docs/custom-container
You will need to use a container with JupyterLab 2.x+. Example: https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html
Upvotes: 1