问题描述
在服务器上新建了一个虚拟环境,下载了相关的包后,使用以下代码新建了kernal
pip install ipykernel
python -m ipykernel install --user --name=pytorch-0.3.0
然后输入jupyter notebook启动,却显示not connection to kernel
解决
是因为的Jupyter notebook之前是安装到了base或者其他环境中,新环境下没有安装Jupyter notebook,因此连接出错。在新环境里重新pip install jupyter notebook即可
参考