Answers for "install jupyter virtualenv"

2

how i install jupyter notebook in a new conda virtual environment

pip install jupyter notebook
Posted by: Guest on April-29-2021
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language