运行jupyter一直显示“*”,运行不出结果

运行jupyter一直显示“*”,运行不出结果,报错信息如下:“signal only works in main thread”
在这里插入图片描述

原因可能是自己前几天安装了goole.colab包,查阅资料显示结果是pyzmq和ipykernel两个包的版本安装不对。

于是参照网上的改法,在命令行中输入以下代码即可:

pip install "pyzmq==18.0.0" -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install "ipykernel==4.8.2" -i https://pypi.tuna.tsinghua.edu.cn/simple

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