Answers for "run jupyter notebook from virtual environment"

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
3

jupyter notebook in environment

python -m ipykernel install --user --name=firstEnv
Posted by: Guest on November-02-2020
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 "run jupyter notebook from virtual environment"

Python Answers by Framework

Browse Popular Code Answers by Language