vscode使用jupyter,安装ipykernel出现的问题总结

问题描述及解决方案

很久没用vscode里面的jupyter插件了

以前是可以使用的,现在不行了,要让你安装ipykernel,

按照他的提示,运行这个

conda install -n bishe ipykernel --update-deps --force-reinstall

然后报了个错

ImportError: cannot import name ‘generator_to_async_generator’

然后网上查了运行下面这个

pip uninstall -y ipython prompt_toolkit
pip install ipython prompt_toolkit

然后运行第二段的时候报了个错

Could not install packages due to an OSError: [Errno 2] No such file or directory

在windows上用pip安装库遇到这个错误,不管装什么库都会报错。
这时只需要按报错的路径建一个名为METADATA的空文件即可。

成功安装
vscode使用jupyter,安装ipykernel出现的问题总结_第1张图片
参考链接
https://www.jianshu.com/p/0daae07cf0dd
https://blog.csdn.net/d200746/article/details/103247290

你可能感兴趣的:(python,vscode)