IPyKernel not installed into interpreter Python 3...

在vscode中使用jupyter,老是提示IPyKernel not installed into interpreter Python 3.8....,本机空间太小,没有安装anaconda。以为python版本不新,于是从3.7换到3.8,又从3.8换回老版本的3.7,还是不行,最后在github上找到答案,运行下面两行命令,就可以了,实际上就是把pyzmq的版本降级。

py -m pip uninstall pyzmq
py -m pip install pyzmq==19.0.2

猜你喜欢

转载自blog.csdn.net/nesodic/article/details/113181733