Link Conda environment with Jupyter Notebook

前端 未结 5 1794
眼角桃花
眼角桃花 2020-11-28 19:59

I\'m trying to set a good environnement for doing some scientific stuff with python. To do so, I installed Jupyter & miniconda.

Then I want to be able to have di

5条回答
  •  悲&欢浪女
    2020-11-28 20:26

    Not sure what else did help, but for me crucial was to install nb_conda_kernels in root conda environment. Attempting to install it in specific conda environment did not end up in having Jupyter Notebook be able to use other conda environment other than default one.

    conda install -n root nb_conda_kernels
    
    jupyter notebook
    

提交回复
热议问题