How we can enable jupyter git in jupyter lab version 2.O not in 3

I tried jupyterlab-git==0.24.0 ,0.23.0 that is compitable with lab 2 .O but when i am enabling front end extension

    • jupyter labextension install @jupyterlab/git
      it is always installing lastes version that is 0.30.0 this is not compitable with lab 2
      due to that it causing compitablility issue , any way how i can enable front end extension that is compiatble with lab 2.O…

The argument to labextension install is any valid npm dependency. Looking at their package.json on the jlab-2 branch it looks like 0.24.0 is the latest version:

jupyter labextension install @jupyterlab/git@0.24.0
1 Like

Thank you very much it is exactly what I was looking for !!!

jupyter labextension install @jupyterlab/git@0.24.0 , i was using “==”

Thanks,
EKram

Yep, the best part of semantic versioning is everyone does it slightly differently… :crying_cat_face: