I wish to use jupyter lab for my projects. I have python 3.11 installed via anaconda.
When I create a virtual environment, jupyter lab is not installed.
How can I avoid many double installations of programmes for each venv?
IF I create venv via conda create -> jupyter lab is not installed.
IF I create venv with python3 -m venv nameofvenv and type “jupyter lab” in terminal -> jupyter lab will open but NOT running on the kernel of the newly created venv?
I download large models for each venv and I don’t like using space of 10 x 500 mb pr. env.
Can you help me with finding a single JupyterLab installation accessible across different environments?