Answers for "run jupyter notebook in conda environment"

7

add conda env to jupyter

source activate myenv
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"
Posted by: Guest on May-11-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
3

open jupyter notebook with conda envirionment

python -m ipykernel install --user --name=firstEnv
Posted by: Guest on November-02-2020
0

open jupyter notebook with conda envirionment

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

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

Python Answers by Framework

Browse Popular Code Answers by Language