jupyter代码自动补全插件、安装使用后出现警告

  安装nbconver后,使用jupyter发现使用出现error,并在cmd上出现了警告

目录

第一阶段:“Config option `template_path` not recognized by `LenvsLatexExporter`”

第二阶段:“Bad file descriptor (C:\ci\zeromq_1616055400030\work\src\epoll.cpp:100)”

 第三阶段:如果还不可以就看这个链接


第一阶段:“Config option `template_path` not recognized by `LenvsLatexExporter`”

jupyter代码自动补全插件、安装使用后出现警告_第1张图片

 原因是nbconvert6.0.0版本以上的某些参数的名称发生了更改,与原先版本不兼容,需要将版本降低到5.6.1

conda install "nbconvert=5.6.1"

 如果下载过慢可以利用:

pip install nbconvert==5.6.1 -i https://pypi.mirrors.ustc.edu.cn/simple

结果:

jupyter代码自动补全插件、安装使用后出现警告_第2张图片

如果再次运行jupyter notebook可以了并且正常使用了,那海海就在这恭喜你了!!

但是我当时安装完,并没有结束,而是出现了另外一种情况

第二阶段:“Bad file descriptor (C:\ci\zeromq_1616055400030\work\src\epoll.cpp:100)”

jupyter代码自动补全插件、安装使用后出现警告_第3张图片

 因为当你安装jupyterlab 或者jupyter notebook的时候,会自动安装ipykernel, 然后自动安装了高版本的pyzmq.
此问题是pyzmq版本问题,先卸载pyzmq 22.0.2,然后安装19.0.2版本即可

pip uninstall pyzmq
pip install pyzmq==19.0.2

到这里我虽然报错了,但是我的jupyter能正常使用了

报错如下啊:

jupyter代码自动补全插件、安装使用后出现警告_第4张图片

 第三阶段:如果还不可以就看这个链接

我是链接(点我)

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