1. install pyenv for managing various python versions 2. install python 3. install virtualenv I create virtual environment named 'jupyter' pyenv virtualenv 3.8.15 jupyter 4. apply 'jupyter' environment. Assign the virtual environment as the local environment. Now the environment will open whenever you enter your project directory. pyenv local jupyter 5. install jupyter lab pip install jupyterlab..