Link Conda environment with Jupyter Notebook

前端 未结 5 1804
眼角桃花
眼角桃花 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

    This worked for me:

    source activate {environment_name}
    python -m ipykernel install --user --name={environment_name};
    

    Incase ipykernel is not installed, use this command:

    conda install -c anaconda ipykernel
    

提交回复
热议问题