Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Estou com problema no jupyter

ola boa noite pessoal to com uma grande dificuldade utilizando o jupyter notebook, estou tendando fazer que mostre um grafico mas não esta indo ja instalei as bibliotecas e não vai

esta é a primeira parte que esta em cima de tudo

%pip install pandas
%pip install openpyxl
%pip install nbformat==4.2.0
%pip install numpy
%pip install plotly.express
%%python -m pip install --upgrade pip
import plotly.express as px

for coluna in tabela.columns:
    grafico = px.histogram(tabela, x=coluna, color="cancelou")
    grafico.show()

No terminal aparece este resultado ```

ValueError Traceback (most recent call last) c:\Users\anton\Desktop\Trabalhos\jupyter\inicial.ipynb Célula 8 line 8 6 for coluna in tabela.columns: 7 grafico = px.histogram(tabela, x=coluna, color="cancelou") ----> 8 grafico.show()

File c:\Users\anton\AppData\Local\Programs\Python\Python311\Lib\site-packages\plotly\basedatatypes.py:3410, in BaseFigure.show(self, args, **kwargs) 3377 """ 3378 Show a figure using either the default renderer(s) or the renderer(s) 3379 specified by the renderer argument (...) 3406 None 3407 """ 3408 import plotly.io as pio -> 3410 return pio.show(self,args, kwargs)

File c:\Users\anton\AppData\Local\Programs\Python\Python311\Lib\site-packages\plotly\io_renderers.py:394, in show(fig, renderer, validate, kwargs) 389 raise ValueError( 390 "Mime type rendering requires ipython but it is not installed" 391 ) 393 if not nbformat or Version(nbformat.version) < Version("4.2.0"): --> 394 raise ValueError( 395 "Mime type rendering requires nbformat>=4.2.0 but it is not installed" 396 ) 398 ipython_display.display(bundle, raw=True) 400 # external renderers

ValueError: Mime type rendering requires nbformat>=4.2.0 but it is not installed

já tentei instalar com ! com % e até mesmo no terminal
1 resposta
solução!

E aí!

Bora tentar uma coisa: ao invés de instalar o nbformat diretamente no Jupyter, tenta rodar isso aqui no começo do seu notebook:

!pip install nbformat==4.2.0

Aí depois disso, tenta rodar o resto do seu código do gráfico novamente. Às vezes, o Jupyter Notebook pode ter alguns problemas de compatibilidade com as versões das bibliotecas, e fixar a versão pode ajudar a evitar esses pepinos.

Se isso não resolver, também vale a pena reiniciar o kernel do Jupyter (o botão lá em cima, no menu, com um ícone de seta circular). Às vezes, as mudanças só são aplicadas depois de reiniciar o kernel.

Se mesmo assim não funcionar, pode ser que haja algum problema mais complexo rolando. Aí, talvez seja bom dar uma olhada mais a fundo na versão do Jupyter que você está usando e se todas as dependências estão certinhas.