Can't get this extension working on my jupyter lab environment
See original GitHub issueI’m using python 3.7.6
And below is my jupyter enviroment (obtained with conda list jupyter
)
# Name Version Build Channel
jupyter 1.0.0 py_2 conda-forge
jupyter_client 6.1.3 py_0 conda-forge
jupyter_console 6.1.0 py_1 conda-forge
jupyter_core 4.6.3 py37hc8dfbb8_1 conda-forge
jupyterlab 2.1.2 py_0 conda-forge
jupyterlab_server 1.1.3 py_0 conda-forge
I have tried jupyter lab clean
and then jupyter lab build
, but still can’t get it working.
I have successfully used the vim extension on jupyterlab 1.X.
I also noticed that there’s a system default shortcut ii
for interrupting the kernel. However, disabling it won’t help either.
What’s other possible causes ? Thank you very much.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Jupyter lab extensions not working · Issue #8122 - GitHub
I installed jupyter lab extensions, which are enabled, but do not work. They appear in the extension manager, but still then they do...
Read more >Extensions — JupyterLab 3.6.0b0 documentation
The jupyter labextension command enables you to install or uninstall source extensions from npm, list all installed extensions, or disable any extension. See ......
Read more >How to use and install Jupyter Lab extensions - YouTube
One thing that I forgot to mention in the video, you do need to have NodeJS installed on your system for this to...
Read more >Issues installing Jupyter Lab Git extension: Mismatched front ...
I can't seem to get these two extension installations to match (or to ever have the extension icon show up in the side...
Read more >@jupyterlab
JupyterLab can be extended using npm packages that use our public APIs. To find JupyterLab extensions, search for the npm keyword jupyterlab-extension or ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I was not able to make this extension work with jupyterlab 3.0.0 and after installing the extension using
pip install jupyterlab_vim
. I checked that the extension was activated (“enabled OK”) usingjupyter labextension list
. I tried the above suggested fix, but it did not help. I then uninstalled the extension again usingpip
, downgraded to jupyterlab 2.2.9 and re-installed the package usingjupyter labextension install @axlair/jupyterlab_vim
. Now it works.One thing I found confusing: While the extension was not working I was unsure if there was a problem with the installation or if I just didn’t know how to enter vim command mode. It would be great if the readme could have something about what it’s supposed to look like when it’s working.
I was having trouble too with Jupyter 2.1.5. To check my extensions, I did the following:
In order to fix my problem I had to delete the file mentioned in #12. In my case it was
rm ~/miniconda3/share/jupyter/lab/settings/*.json
After that I did a
jupyter lab clean; jupyter lab build
, everything worked.Hope that helps.