Answers for "run jupyter notebook inside a virtual environment conda"

1

run jupyter notebook with specific environment

//first activate specific environment
activate <Name of environment>
//second launch jupyter notebook
jupyter notebook
Posted by: Guest on May-14-2021
0

jupyter notebook in virtual environment

python3 -m venv venv
source venv/bin/activate
ipython kernel install --user --name=venv

#to uninstall -->
jupyter-kernelspec uninstall venv
Posted by: Guest on October-01-2021

Code answers related to "run jupyter notebook inside a virtual environment conda"

Browse Popular Code Answers by Language