use jupyter notebook with virtualenv code example
Example 1: jupyter from virtualenv
$ python -m venv projectname
$ source projectname/bin/activate
(venv) $ pip install ipykernel
(venv) $ ipython kernel install --user --name=projectname
Example 2: jupyter notebook venv
python -m ipykernel install --user --name=myenv