1

I installed jupyter notebook with pip using python -m pip install jupyter and nbextensions using pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install

My current jupyter-notebook version is 6.1.6 which makes nbextensions to show blank tab as per this thread . However the solution is to downgrade the notebook to 6.1.5 version.

How do I do that using pip?

Prashant Kumar
  • 501
  • 8
  • 26

2 Answers2

1

pip install notebook==6.1.5 will downgrade the jupyter notebook

Prashant Kumar
  • 501
  • 8
  • 26
0

You can specify a version number:

pip install jupyter-notebook==6.1.5
johanvdw
  • 401
  • 3
  • 11
  • tried that, didn't work `ERROR: Could not find a version that satisfies the requirement jupyter-notebook==6.1.5 ERROR: No matching distribution found for jupyter-notebook==6.1.5` – Prashant Kumar Jan 06 '21 at 09:21