Answers for "how to use virtual env with jupyter"

1

jupyter notebook virtualenv

$ python -m venv projectname
$ source projectname/bin/activate
(venv) $ pip install ipykernel
(venv) $ ipython kernel install --user --name=projectname
Posted by: Guest on January-13-2020
0

make virtual env available in jupyter

pip install --user ipykernel
Posted by: Guest on January-10-2022

Code answers related to "how to use virtual env with jupyter"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language