jupyter运行全是*
时间: 2023-11-14 13:04:11 浏览: 133
jupyter运行时出现ERROR: Cannot uninstall ‘ipykernel’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.的错误可能是由于无法完全卸载ipykernel导致的。可以尝试重新启动jupyter来解决这个问题。如果问题仍然存在,可以尝试运行pip install "pyzmq==17.0.0" "ipykernel==4.8.2"来安装特定版本的pyzmq和ipykernel。另外,如果在运行代码时python是灰色的,并且命令框显示ERROR: tornado.general: Uncaught exception in ZMQStream callback … ValueError: signal only works in main thread,可以尝试运行pip install update pyzmq ipykernel来更新pyzmq和ipykernel。
相关问题
jupyter notebook运行有*号
在 Jupyter Notebook 中,一个星号 (*) 表示该单元格正在运行。如果你看到一个单元格上有一个星号,那么这意味着 Jupyter Notebook 正在运行该单元格中的代码。请等待直到星号消失,这意味着该单元格的代码已经执行完成。
jupyter notebook in[*]
jupyter notebook in[*] 是指Jupyter Notebook正在运行中,[*]表示Jupyter Notebook正在等待输入命令或代码。在这种状态下,可以在Jupyter Notebook中输入代码或命令来执行相应的操作。
阅读全文