我用pycharm运行的,pyLDAvis.enable_notebook()这句报错AttributeError: 'NoneType' object has no attribute 'display_formatter'
时间: 2023-10-13 16:18:30 浏览: 412
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是由于Jupyter notebook未正确安装或配置导致的。如果您正在使用Jupyter notebook,则需要在代码的最前面添加以下行:
```
import IPython.core.display as di
di.display_formatter = None
```
如果您不是在Jupyter notebook中使用pyLDAvis,则需要检查是否已正确安装Jupyter以及其他必要的依赖项。您可以尝试更新您的Jupyter notebook版本并重新安装pyLDAvis,或者尝试在其他Python IDE中运行代码。
阅读全文