Potential plugin version mismatch issue
See original GitHub issueOn upgrade of this plugin, you might see a plugin version mismatch error message.
Steps to solve this:
- Try to update the lab extension first with
jupyter labextension update @ryantam626/jupyterlab_code_formatter
- Work out what version of the lab extension you have with
jupyter labextension list | grep jupyterlab-code-formatter
- Install a matching server extension with
pip install jupyterlab_code_formatter==x.x.x
(replacex.x.x
with version you observe in step 2 - Work out what version of the server plugin you have with
pip freeze | grep jupyterlab-code-formatter
and confirm it matches what you installed step 3 optionally - Restart jupyterlab
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:10 (6 by maintainers)
Top Results From Across the Web
PiPL and code version mismatch warning
Solved: Hey, I was hoping someone could help me understand PiPL versions. I have had some problems with a warning flag when I...
Read more >Potential problem Version 4.2.5 – Payment total mismatch
I'm running woocommerce Version 4.2.5 on WordPress 5.4.10. While going through the orders today, I noticed a critical issue with two of them....
Read more >gstomx plugin version mismatch - NVIDIA Developer Forums
i have query regarding version of gstomx plugin binary provided in 21.4 release and plugin compiled from source code.
Read more >Eclipse Plugin Version Mismatch Issue - Stack Overflow
I checked the feature.xml and it has the correct version numbers. But the current installation does not show the problem. So I do...
Read more >Getting Out of Version-Mismatch-Hell with Module Federation
What's New in our Module Federation Plugin 14.3? Webpack Module Federation makes it easy to load separately compiled code like micro frontends.
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 Free
Top 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
@b4dboi similar issues was observed before, doing
jupyter serverextension enable --py jupyterlab_code_formatter --sys-prefix
instead ofjupyter serverextension enable --py jupyterlab_code_formatter
usually fixes this if you are using docker@paw-lu Don’t use the conda-forge package right now, it’s not updated just yet (I don’t manage that). Just pip install should work now if you are using jupyterlab 3, feel free to look at more recent PR/issues for more context.