How to switch environment on Jupyter notebook for new notebook?

前端 未结 5 671
情书的邮戳
情书的邮戳 2021-02-06 12:20

I have an instance with various environment and some notebooks are compatible with different environment for e.g. notebook1 is for MXNet and notebook2 is for Tensorflow.

5条回答
  •  清歌不尽
    2021-02-06 13:12

    Along with this package I think also need to change the ~/.jupyter/jupyter_notebook_config.py file with following config

    c.NotebookApp.kernel_spec_manager_class = 'environment_kernels.EnvironmentKernelSpecManager'
    

提交回复
热议问题