Installation issue from JupyterLab extension manager
See original GitHub issueThe front page directions do work after upgrading jupyter lab to the latest.
jupyter labextension install @jupyterlab/git pip install jupyterlab-git jupyter serverextension enable --py jupyterlab_git
I originally installed the extension with via the UI (ext manager) but couldn’t get it to work.
Running the steps above from the command line solved the issue!
_Originally posted by @lambdamusic in https://github.com/jupyterlab/jupyterlab-git/issues/212#issuecomment-483984286_
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:11 (11 by maintainers)
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 Extension Manager in JupyterLab and the jupyter labextension install command can install source extension packages from npm. Installing a source ...
Read more >Unable to install jupyterlab-execute-time extension
I'm using Jupyter Lab version 3.0.14. Extension Installation Error Extension Installation Error An error occurred installing <code>jupyterlab- ...
Read more >Top 9 JupyterLab Extensions & How to Pick Yours - Tabnine
jupyter labextension install @jupyterlab/[extension]. The other method is using the extension manager. Start by clicking the puzzle icon, ...
Read more >Enable JupyterLab Extension Manager - YouTube
In this videoI'm going to enable the JupyterLab Extension Managerand try out an interactive Python library on JupyterLab.
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
Note for completeness: just because we are changing the plugin distribution and build system in Jupyterlab does not entail that we will stop having a UI frontend for discovering and managing extensions. It will close this issue though (assuming that the current plan ends up working).
A real solution to this issue would require significant enhancements to the labextension GUI in core. These likely won’t happen, since the current plan is to jettison the labextension manager from core entirely. Instead we’ll bundle each plugin’s lab- and/or serverextension together in a single Python package, and then let
pip
/conda
sort out everything else. So in that sense, this issue is a won’t fix.On the bright side, after the work done in #415 and #458, an end user need only now install the
pip
package and then (re)build the app:in order to get a completely functional instance of the
@jupyterlab/git
plugin running. So that at least addresses the concern of an end-user needing to grasp the lab/serverextension distinction