使用jupyter notebook 练习的时候, 常需要在某一特定环境中运行jupyter, 比如想在配置好keras的环境下运行jupyter. 需要将特定环境链接到jupyter模块中, 做法如下:
1、conda activate your_env
2、(your_env)$ pip install ipykernel
3、(your_env)$ python -m ipykernel install --user --name your_env --display-name your_name
这里的your_name是你想在创建jupyter文件时, 选择的环境名称.
4、重启jupyter (刷新不重启会报错).