> For the complete documentation index, see [llms.txt](https://quantum-computing.gitbook.io/introduction-to-quantum-computing/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://quantum-computing.gitbook.io/introduction-to-quantum-computing/which-tools-do-you-use/python-virtual-env-and-jupyter/how-to-install-virtuel-env-on-ubuntu/using-jupyter-with-virtual-env.md).

# Using Jupyter with virtual Env

@[page and thx to](https://anbasile.github.io/posts/2017-06-25-jupyter-venv/)

```
// activate the env
source projectname/bin/activate

## install the kernel
pip install ipykernel

##activate the kernel
ipython kernel install --user --name=projectname

## DONE
```
