Plotly:找不到 mimetype“application/vnd.plotly.v1+json”的渲染器

问题描述 投票:0回答:1

环境:

  • 视觉代码
  • Jupyter 扩展 (v2022.9.1202862440)
  • 内核:Python 3.10.1 64 位
  • Pyplot 版本:5.10.0
  • NB格式版本:5.7.0

发生了什么事?

我正在尝试通过以下代码将简单的箱线图与

plotly.express
一起使用:

#Basic vizualization
fig = px.box(dataset, y='Rh2')
fig.update_layout(
    height=1000
)

第一个错误非常简单:

ValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed
我使用 this answer.

解决了

第二个错误是我现在遇到的错误:

No renderer could be found for mimetype "application/vnd.plotly.v1+json", but one might be available on the Marketplace.

我不知道在这里可以做什么——在互联网上没有提到这样的问题(至少我找不到)+市场空间也没有帮助!

提前致谢


编辑:

尝试添加:

pio.renderers.default = "vscode"
和其他各种但它们不会导致错误,只会导致空白。

python pandas plotly nbformat
1个回答
5
投票

尝试在 vscode 上安装Jupyter Notebook Renderersextension.

© www.soinside.com 2019 - 2024. All rights reserved.