1

How do you install a specific version of Jupyterlab?

I've looked around in jupyterlab installations and the changelog with no success. I've also tried various approaches with:

conda install -c conda-forge jupyterlab --version 1.0.0

Thank you for any suggestions!

vestland
  • 55,229
  • 37
  • 187
  • 305

1 Answers1

4

From the conda docs:

To install a specific version of a package such as SciPy:

conda install scipy=0.15.0

So I would guess in your case try

conda install -c conda-forge jupyterlab=1.0.0
Dan
  • 45,079
  • 17
  • 88
  • 157