Using a virtual environment with a Jupyter notebook is easy! Install and use virtualenv For instructions on installing, using, and activating virtualenv, refer to my blog article here. NOTE: You may use your virtual environment of choice. Add virtualenv environment to Jupyter notebook Activate the virtual environment Install ipykernel 1pip3 install ipykernel Use the ipykernel install command 1python3 -m ipykernel install --user --name=venv # this name can be anything Open jupyter-lab and clic...