Answers for "launch jupyter notebook in conda environment"

1

jupyter lab use conda environment

$ conda activate cenv
(cenv)$ conda install ipykernel
(cenv)$ ipython kernel install --user --name=<any_name_for_kernel>
(cenv($ conda deactivate
Posted by: Guest on December-28-2020
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

open jupyter notebook with conda envirionment

conda install -c anaconda ipykernel
Posted by: Guest on December-09-2020

Code answers related to "launch jupyter notebook in conda environment"

Browse Popular Code Answers by Language