运行jupyter报错AttributeError: module 'mistune' has no attribute 'BlockGrammar'
时间: 2023-11-14 21:04:53 浏览: 258
解决:slate报错 AttributeError: module ‘importlib._bootstrap’ has no attribute ‘SourceFileLoade
这个错误通常是由于mistune版本不兼容导致的。你可以尝试更新mistune模块或者降低jupyter的版本来解决这个问题。具体操作如下:
1. 更新mistune模块:在命令行中输入pip install --upgrade mistune,等待更新完成后再次尝试运行jupyter。
2. 降低jupyter版本:在命令行中输入pip install jupyter==x.x.x(x.x.x为较低的版本号),等待安装完成后再次尝试运行jupyter。
另外,你也可以尝试在jupyter中使用其他markdown渲染器,例如pandoc等。如果问题仍然存在,请检查你的环境变量是否正确设置,并且确认你的mistune模块是否正确安装。
阅读全文