git extension not showing up when running `jupyter server extension list`
See original GitHub issueDescription
I ran pip install jupyterlab-git
, and I see the frontend extension , but cannot see the server extension (see screenshots below).
labextension is present
server extension is missing
Reproduce
pip install jupyterlab-git
jupyter server extension list
Expected behavior
Expect to see jupyterlab-git server extension
Context
- Python package version:
pip freeze | grep jupyter
jupyter-client==6.1.12
jupyter-core==4.7.1
jupyter-packaging==0.10.2
jupyter-server==1.7.0
jupyter-server-mathjax==0.2.2
jupyterlab==3.0.16
jupyterlab-git==0.30.1
jupyterlab-pygments==0.1.2
jupyterlab-server==2.5.2
jupyterlab-widgets==1.0.0
pip show jupyterlab-git
Name: jupyterlab-git
Version: 0.30.1
Summary: A JupyterLab extension for version control using git
Home-page: https://github.com/jupyterlab/jupyterlab-git.git
Author: Jupyter Development Team
Author-email: None
License: BSD-3-Clause
Location: /Users/spak/.pyenv/versions/3.9.1/envs/jlab3_extension_dev/lib/python3.9/site-packages
Requires: nbformat, jupyter-server, pexpect, nbdime, packaging
Required-by:
- Extension version:
@jupyterlab/git v0.30.1 enabled OK
- Git version:
git version 2.31.1
- Operating System and its version: Mac OS Catalina 10.15.7 (19H1030)
Command Line Output
Paste the output from your command line running `jupyter lab` here, use `--debug` if possible.
Web Browser Output
Paste the output from your browser web console here.
Issue Analytics
- State:
- Created 2 years ago
- Comments:11 (4 by maintainers)
Top Results From Across the Web
Jupyter lab extensions not working · Issue #8122 - GitHub
Description I installed jupyter lab extensions, which are enabled, but do not work. They appear in the extension manager, but still then ...
Read more >Git server extension in JupyterLab unavailable - Stack Overflow
The extension manager says that it has been installed but when I run jupyter server extension list it is not there.
Read more >[JupyterHub on Kubernetes] LSP server extension not found + ...
When I tried running jupyter server extension list , I can see the following. However, the git extension is still not installed. Config...
Read more >Introduction to Using Git in Jupyter
You have initialized a new git repository by using the git extension. Now, it is time to do some work by adding a...
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
Ok I think I figured it out - I deleted this directory
/usr/local/Cellar/jupyterlab/3.0.14/libexec/etc/jupyter
, and now things are working as expectedMany thanks @krassowski , will go ahead and close this issue
Looks suspiciously similar to an issue we are having over at https://github.com/krassowski/jupyterlab-lsp/issues/598 - also on Mac.
Could you please try running:
jupyter server extension enable --py jupyterlab-git
or
jupyter server extension enable --sys-prefix --py jupyterlab-git
And see if it shows up on the list afterwards?