run jupyter notebook inside a virtual environment code example
Example 1: run jupyter notebook with specific environment
//first activate specific environment
activate <Name of environment>
//second launch jupyter notebook
jupyter notebook
Example 2: how to add virtual environment in jupyter notebook
python -m ipykernel install --user --name=<my_env_name>