Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Horizontal scrolling unavailable in Firefox #14625

Closed
MakedonskoMomce opened this issue Jun 1, 2023 · 27 comments · Fixed by #15171
Closed

Horizontal scrolling unavailable in Firefox #14625

MakedonskoMomce opened this issue Jun 1, 2023 · 27 comments · Fixed by #15171
Labels
bug tag:Design and UX tag:Regression Behavior that had been broken, was fixed, and is broken again
Milestone

Comments

@MakedonskoMomce
Copy link

Description

Horizontal scrolling for wide objects does not work in Firefox.

Steps to Reproduce

  1. Spin up a clean jupyter-lab environment.
  2. Access the JupyterLab UI from Firefox.
  3. Create a wide pandas dataframe that overflows horizontally, and attempt to scroll horizontally by holding Shift and scrolling, or by looking for the horizontal scrollbar.

image

This occurs from a clean jupyterlab installation in Firefox, but not in Chrome.

Expected behavior

A scrollbar should appear, as in Chrome.

image

Context

  • Operating System and version: Linux Ubuntu 20.04.6 LTS
  • Browser and version: Firefox Developer Edition 114.0b9 (64-bit)
  • JupyterLab version: 4.0.1
@jupyterlab-probot jupyterlab-probot bot added the status:Needs Triage Applied to new issues that need triage label Jun 1, 2023
@welcome
Copy link

welcome bot commented Jun 1, 2023

Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗

If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
welcome
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋

Welcome to the Jupyter community! 🎉

@wahlatlas
Copy link

dito on Firefox 113.0.2 on macOS 12.6.6 whereas Safari 16.5 shows the expected horizontal scrolling behaviour (Jupyter Lab 4.0.1, mambaforge install)

@Codosimba
Copy link

Codosimba commented Jul 4, 2023

Facing the same issue.
image

OS - Ubuntu in WSL. Version - "Ubuntu 20.04.6 LTS
Browser - Mozilla Firefox
Jupyterlab Version - 4.0.2

Solutions I tried

  1. Tried to set pd.set_option.display.max_columns
  2. Enable scrolling for output.

@irenatfh
Copy link

irenatfh commented Jul 5, 2023

I'm also facing this issue.
Mac OS: Ventura 13.0.1
Browser: Mozilla Firefox
Jupyterlab version: 4.0.2

Hope there's a solution soon!

@bdewilde
Copy link

bdewilde commented Jul 6, 2023

+1, this issue is a real impediment to inspecting data frame output 😞

macOS: Ventura 13.4.1
browser: Firefox 114.0.2
jupyterlab: 4.0.2

@wcraft
Copy link

wcraft commented Jul 10, 2023

I am experiencing the same issue. But downgrading to jupyterlab 3.6.5 fixed the issue for me!

browser: Firefox 14.0.2

@AllanChain
Copy link
Contributor

This is a regression from #11508, which uses display: table-cell for jp-OutputArea-output, and Firefox doesn't support overflow in table-cell well.

PS: I don't know why display: table-cell is used here. Things look fine if I disable the rule.

@wb6
Copy link

wb6 commented Aug 21, 2023

temprary fix using bookmarklet:

javascript:(async function(){var styleElement = document.createElement('style'); styleElement.appendChild(document.createTextNode(".jp-OutputArea-output {display:flex}")); document.head.appendChild(styleElement);%20})();

select and drag code text to bookmark bar. Name it "fix jupyter table".

@ThomVett
Copy link

Similar issue for me

  • Firefox 117.0 (64-bit)
  • tried with jupyterlab 0.4.0 and 4.0.5

downgraded to 3.6.5 and it works

@atemerev
Copy link

atemerev commented Sep 4, 2023

Voting for this, Jupyter is not currently usable on Firefox (tried on Linux and Mac).

@svaningelgem
Copy link

Workaround from within a Notebook cell:

from IPython.display import display, HTML
display(HTML("<style>.jp-OutputArea-output {display:flex}</style>"))

@alimantu
Copy link

Same issue for me:

  • Firefox 117.0.1 (64-bit)

Works with tweak from @wb6. Thanks, man.

@joaopmatias
Copy link

As suggested in this answer

https://stackoverflow.com/a/71986034/11454106

You can use a snippet like the following to show the scroll bars when displaying a pandas dataframe df

vscrollbar = {
 'selector': '',
 'props': ' height: 500px; width: 1000px; overflow-y: scroll; overflow-x: scroll;display: inline-block;'
}

df.style.set_table_styles([vscrollbar])

@williamstein
Copy link

So you can copy paste the input without having to type it in like I just did:

import numpy as np
import pandas as pd
df = pd.DataFrame(np.arange(100))
with pd.option_context('display.max_columns',100):
    display(df.T)

@krassowski
Copy link
Member

As per @bollwyvl comment, if the intent of the CSS rule was to help with print layout maybe it should be hidden behind @media rule.

@gabriel-macherini
Copy link

Workaround from within a Notebook cell:

from IPython.display import display, HTML
display(HTML("<style>.jp-OutputArea-output {display:flex}</style>"))

Thanks!

@jpcaram
Copy link

jpcaram commented Oct 5, 2023

The issue is still present on 4.0.6.

@kirui93
Copy link

kirui93 commented Oct 6, 2023

This issue is still existing in Jupyterlab 4.0.6

@krassowski
Copy link
Member

Just for reference, a fix for this issue was released in version 4.0.7 three days ago.

@svaningelgem
Copy link

svaningelgem commented Oct 17, 2023

Hi @krassowski , @jtpio ,

I have the following jupyter components installed:

jupyter-contrib-core      0.4.2                    pypi_0    pypi
jupyter-lsp               2.2.0              pyhd8ed1ab_0    conda-forge
jupyter-nbextensions-configurator 0.6.3                    pypi_0    pypi
jupyter_client            8.4.0              pyhd8ed1ab_0    conda-forge
jupyter_core              5.4.0           py311h1ea47a8_0    conda-forge
jupyter_events            0.7.0              pyhd8ed1ab_2    conda-forge
jupyter_server            2.7.3              pyhd8ed1ab_1    conda-forge
jupyter_server_terminals  0.4.4              pyhd8ed1ab_1    conda-forge
jupyterlab                4.0.7              pyhd8ed1ab_0    conda-forge
jupyterlab_pygments       0.2.2              pyhd8ed1ab_0    conda-forge
jupyterlab_server         2.25.0             pyhd8ed1ab_0    conda-forge
jupyterlab_widgets        3.0.9              pyhd8ed1ab_0    conda-forge

And my firefox is 118.02 (64bit) on windows.

However the issue seems not to be fixed yet:
image

When applying my fix (see above), I get the horizontal scrollbars:
image

Is it possible to look into it? Or should I open a new issue for this?

@krassowski
Copy link
Member

@svaningelgem your screenshots appear to be from Jupyter Notebook, not JupyterLab, am I correct? In that case, you need to upgrade notebook to 7.0.5 or newer.

@svaningelgem
Copy link

svaningelgem commented Oct 17, 2023

Thanks for the reply, but they're already like that:

notebook                  7.0.5              pyhd8ed1ab_0    conda-forge
notebook-shim             0.2.3              pyhd8ed1ab_0    conda-forge

Should I report it at their side? (notebook 7.0.6 didn't fix it either -- my code snippet still works)

@krassowski
Copy link
Member

I just tested it with the snippet from #14625 (comment) in Firefox 117.0.1 in Jupyter Notebook v7.0.6 and it works well:

works-for-me

@krassowski
Copy link
Member

Can you confirm that you use 7.0.5+ by checking the Help → About dialog?

@svaningelgem
Copy link

image
Yup, 7.0.6 right now. No horizontal bar... I see in your screencast that it only appears when going over the cell. I tried it as well, but nothing appears.

@svaningelgem
Copy link

svaningelgem commented Oct 17, 2023

Detailed package list of environment
# Name                    Version                   Build  Channel
anyio                     4.0.0              pyhd8ed1ab_0    conda-forge
argon2-cffi               23.1.0             pyhd8ed1ab_0    conda-forge
argon2-cffi-bindings      21.2.0          py311ha68e1ae_4    conda-forge
arrow                     1.3.0              pyhd8ed1ab_0    conda-forge
asttokens                 2.4.0              pyhd8ed1ab_0    conda-forge
async-lru                 2.0.4              pyhd8ed1ab_0    conda-forge
attrs                     23.1.0             pyh71513ae_1    conda-forge
babel                     2.13.0             pyhd8ed1ab_0    conda-forge
backcall                  0.2.0              pyh9f0ad1d_0    conda-forge
backports                 1.0                pyhd8ed1ab_3    conda-forge
backports.functools_lru_cache 1.6.5              pyhd8ed1ab_0    conda-forge
beautifulsoup4            4.12.2             pyha770c72_0    conda-forge
bleach                    6.1.0              pyhd8ed1ab_0    conda-forge
brotli                    1.1.0                hcfcfb64_1    conda-forge
brotli-bin                1.1.0                hcfcfb64_1    conda-forge
brotli-python             1.1.0           py311h12c1d0e_1    conda-forge
bs4                       4.12.2               hd8ed1ab_0    conda-forge
bzip2                     1.0.8                h8ffe710_4    conda-forge
ca-certificates           2023.7.22            h56e8100_0    conda-forge
cached-property           1.5.2                hd8ed1ab_1    conda-forge
cached_property           1.5.2              pyha770c72_1    conda-forge
certifi                   2023.7.22          pyhd8ed1ab_0    conda-forge
cffi                      1.16.0          py311ha68e1ae_0    conda-forge
charset-normalizer        3.3.0              pyhd8ed1ab_0    conda-forge
clang_variant             1.0                     default    conda-forge
clangdev                  5.0.0             h5aa907a_1012    conda-forge
colorama                  0.4.6              pyhd8ed1ab_0    conda-forge
comm                      0.1.4              pyhd8ed1ab_0    conda-forge
contourpy                 1.1.1           py311h005e61a_1    conda-forge
cycler                    0.12.1             pyhd8ed1ab_0    conda-forge
dacite                    1.8.1                    pypi_0    pypi
debugpy                   1.8.0           py311h12c1d0e_1    conda-forge
decorator                 5.1.1              pyhd8ed1ab_0    conda-forge
defusedxml                0.7.1              pyhd8ed1ab_0    conda-forge
entrypoints               0.4                pyhd8ed1ab_0    conda-forge
exceptiongroup            1.1.3              pyhd8ed1ab_0    conda-forge
executing                 1.2.0              pyhd8ed1ab_0    conda-forge
fonttools                 4.43.1          py311ha68e1ae_0    conda-forge
fqdn                      1.5.1              pyhd8ed1ab_0    conda-forge
freetype                  2.12.1               hdaf720e_2    conda-forge
gettext                   0.21.1               h5728263_0    conda-forge
glib                      2.78.0               h12be248_0    conda-forge
glib-tools                2.78.0               h12be248_0    conda-forge
greenlet                  2.0.2                    pypi_0    pypi
gst-plugins-base          1.22.6               h001b923_2    conda-forge
gstreamer                 1.22.6               hb4038d2_2    conda-forge
htmlmin                   0.1.12                   pypi_0    pypi
icu                       73.2                 h63175ca_0    conda-forge
idna                      3.4                pyhd8ed1ab_0    conda-forge
imagehash                 4.3.1                    pypi_0    pypi
importlib-metadata        6.8.0              pyha770c72_0    conda-forge
importlib_metadata        6.8.0                hd8ed1ab_0    conda-forge
importlib_resources       6.1.0              pyhd8ed1ab_0    conda-forge
intel-openmp              2023.2.0         h57928b3_50496    conda-forge
ipykernel                 6.25.2             pyh60829e3_0    conda-forge
ipython                   8.16.1             pyh5737063_0    conda-forge
ipywidgets                8.1.1              pyhd8ed1ab_0    conda-forge
isoduration               20.11.0            pyhd8ed1ab_0    conda-forge
jedi                      0.19.1             pyhd8ed1ab_0    conda-forge
jinja2                    3.1.2              pyhd8ed1ab_1    conda-forge
joblib                    1.3.2              pyhd8ed1ab_0    conda-forge
json5                     0.9.14             pyhd8ed1ab_0    conda-forge
jsonpointer               2.4             py311h1ea47a8_3    conda-forge
jsonschema                4.19.1             pyhd8ed1ab_0    conda-forge
jsonschema-specifications 2023.7.1           pyhd8ed1ab_0    conda-forge
jsonschema-with-format-nongpl 4.19.1             pyhd8ed1ab_0    conda-forge
jupyter-contrib-core      0.4.2                    pypi_0    pypi
jupyter-lsp               2.2.0              pyhd8ed1ab_0    conda-forge
jupyter-nbextensions-configurator 0.6.3                    pypi_0    pypi
jupyter_client            8.4.0              pyhd8ed1ab_0    conda-forge
jupyter_core              5.4.0           py311h1ea47a8_0    conda-forge
jupyter_events            0.8.0              pyhd8ed1ab_0    conda-forge
jupyter_server            2.8.0              pyhd8ed1ab_0    conda-forge
jupyter_server_terminals  0.4.4              pyhd8ed1ab_1    conda-forge
jupyterlab                4.0.7              pyhd8ed1ab_0    conda-forge
jupyterlab_pygments       0.2.2              pyhd8ed1ab_0    conda-forge
jupyterlab_server         2.25.0             pyhd8ed1ab_0    conda-forge
jupyterlab_widgets        3.0.9              pyhd8ed1ab_0    conda-forge
kiwisolver                1.4.5           py311h005e61a_1    conda-forge
krb5                      1.21.2               heb0366b_0    conda-forge
lcms2                     2.15                 h67d730c_3    conda-forge
lerc                      4.0.0                h63175ca_0    conda-forge
libblas                   3.9.0              19_win64_mkl    conda-forge
libbrotlicommon           1.1.0                hcfcfb64_1    conda-forge
libbrotlidec              1.1.0                hcfcfb64_1    conda-forge
libbrotlienc              1.1.0                hcfcfb64_1    conda-forge
libcblas                  3.9.0              19_win64_mkl    conda-forge
libclang                  15.0.7          default_h77d9078_3    conda-forge
libclang13                15.0.7          default_h77d9078_3    conda-forge
libdeflate                1.19                 hcfcfb64_0    conda-forge
libexpat                  2.5.0                h63175ca_1    conda-forge
libffi                    3.4.2                h8ffe710_5    conda-forge
libflang                  5.0.0           h6538335_20180525    conda-forge
libglib                   2.78.0               he8f3873_0    conda-forge
libhwloc                  2.9.3           default_haede6df_1009    conda-forge
libiconv                  1.17                 h8ffe710_0    conda-forge
libjpeg-turbo             3.0.0                hcfcfb64_1    conda-forge
liblapack                 3.9.0              19_win64_mkl    conda-forge
libogg                    1.3.4                h8ffe710_1    conda-forge
libopenblas               0.3.24          pthreads_hc140b1d_0    conda-forge
libpng                    1.6.39               h19919ed_0    conda-forge
libsodium                 1.0.18               h8d14728_1    conda-forge
libsqlite                 3.43.2               hcfcfb64_0    conda-forge
libtiff                   4.6.0                h6e2ebb7_2    conda-forge
libvorbis                 1.3.7                h0e60522_0    conda-forge
libwebp-base              1.3.2                hcfcfb64_0    conda-forge
libxcb                    1.15                 hcd874cb_0    conda-forge
libxml2                   2.11.5               hc3477c8_1    conda-forge
libzlib                   1.2.13               hcfcfb64_5    conda-forge
llvm-meta                 13.0.1               hd8ed1ab_0    conda-forge
llvmlite                  0.41.0                   pypi_0    pypi
m2w64-gcc-libgfortran     5.3.0                         6    conda-forge
m2w64-gcc-libs            5.3.0                         7    conda-forge
m2w64-gcc-libs-core       5.3.0                         7    conda-forge
m2w64-gmp                 6.1.0                         2    conda-forge
m2w64-libwinpthread-git   5.0.0.4634.697f757               2    conda-forge
m3u8downloader            0.10.1                   pypi_0    pypi
markupsafe                2.1.3           py311ha68e1ae_1    conda-forge
matplotlib                3.7.3                    pypi_0    pypi
matplotlib-inline         0.1.6              pyhd8ed1ab_0    conda-forge
mistune                   3.0.1              pyhd8ed1ab_0    conda-forge
mkl                       2023.2.0         h6a75c08_50496    conda-forge
msys2-conda-epoch         20160418                      1    conda-forge
multimethod               1.10                     pypi_0    pypi
munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
nbclient                  0.8.0              pyhd8ed1ab_0    conda-forge
nbconvert-core            7.9.2              pyhd8ed1ab_0    conda-forge
nbformat                  5.9.2              pyhd8ed1ab_0    conda-forge
nest-asyncio              1.5.8              pyhd8ed1ab_0    conda-forge
networkx                  3.1                      pypi_0    pypi
notebook                  7.0.6              pyhd8ed1ab_0    conda-forge
notebook-shim             0.2.3              pyhd8ed1ab_0    conda-forge
numba                     0.58.0                   pypi_0    pypi
numpy                     1.25.2                   pypi_0    pypi
openjpeg                  2.5.0                h3d672ee_3    conda-forge
openmp                    5.0.0                    vc14_0    conda-forge
openssl                   3.1.3                hcfcfb64_0    conda-forge
overrides                 7.4.0              pyhd8ed1ab_0    conda-forge
packaging                 23.2               pyhd8ed1ab_0    conda-forge
pandas                    2.0.3                    pypi_0    pypi
pandocfilters             1.5.0              pyhd8ed1ab_0    conda-forge
parso                     0.8.3              pyhd8ed1ab_0    conda-forge
patsy                     0.5.3              pyhd8ed1ab_0    conda-forge
pcre2                     10.40                h17e33f8_0    conda-forge
phik                      0.12.3                   pypi_0    pypi
pickleshare               0.7.5                   py_1003    conda-forge
pillow                    10.1.0          py311h4dd8a23_0    conda-forge
pip                       23.3               pyhd8ed1ab_0    conda-forge
pkgutil-resolve-name      1.3.10             pyhd8ed1ab_1    conda-forge
platformdirs              3.11.0             pyhd8ed1ab_0    conda-forge
playwright                1.38.0                   pypi_0    pypi
ply                       3.11                       py_1    conda-forge
polars                    0.19.8                   pypi_0    pypi
prometheus_client         0.17.1             pyhd8ed1ab_0    conda-forge
prompt-toolkit            3.0.39             pyha770c72_0    conda-forge
prompt_toolkit            3.0.39               hd8ed1ab_0    conda-forge
psutil                    5.9.5           py311ha68e1ae_1    conda-forge
pthread-stubs             0.4               hcd874cb_1001    conda-forge
pthreads-win32            2.9.1                hfa6e2cd_3    conda-forge
pure_eval                 0.2.2              pyhd8ed1ab_0    conda-forge
pycparser                 2.21               pyhd8ed1ab_0    conda-forge
pydantic                  1.10.13                  pypi_0    pypi
pyee                      9.0.4                    pypi_0    pypi
pygments                  2.16.1             pyhd8ed1ab_0    conda-forge
pyparsing                 3.1.1              pyhd8ed1ab_0    conda-forge
pyqt                      5.15.9          py311h125bc19_5    conda-forge
pyqt5-sip                 12.12.2         py311h12c1d0e_5    conda-forge
pysocks                   1.7.1              pyh0701188_6    conda-forge
python                    3.11.6          h2628c8c_0_cpython    conda-forge
python-dateutil           2.8.2              pyhd8ed1ab_0    conda-forge
python-fastjsonschema     2.18.1             pyhd8ed1ab_0    conda-forge
python-json-logger        2.0.7              pyhd8ed1ab_0    conda-forge
python-tzdata             2023.3             pyhd8ed1ab_0    conda-forge
python_abi                3.11                    4_cp311    conda-forge
pytz                      2023.3.post1       pyhd8ed1ab_0    conda-forge
pywavelets                1.4.1                    pypi_0    pypi
pywin32                   306             py311h12c1d0e_2    conda-forge
pywinpty                  2.0.12          py311h12c1d0e_0    conda-forge
pyyaml                    6.0.1           py311ha68e1ae_1    conda-forge
pyzmq                     25.1.1          py311h7b3f143_1    conda-forge
qt-main                   5.15.8              h9e85ed6_17    conda-forge
referencing               0.30.2             pyhd8ed1ab_0    conda-forge
requests                  2.31.0             pyhd8ed1ab_0    conda-forge
rfc3339-validator         0.1.4              pyhd8ed1ab_0    conda-forge
rfc3986-validator         0.1.1              pyh9f0ad1d_0    conda-forge
rpds-py                   0.10.6          py311hc37eb10_0    conda-forge
ruff                      0.1.0           py311hc14472d_0    conda-forge
scikit-learn              1.3.1           py311h142b183_1    conda-forge
scipy                     1.11.3          py311h0b4df5a_1    conda-forge
seaborn                   0.12.2                   pypi_0    pypi
send2trash                1.8.2              pyh08f2357_0    conda-forge
setuptools                68.2.2             pyhd8ed1ab_0    conda-forge
sip                       6.7.12          py311h12c1d0e_0    conda-forge
six                       1.16.0             pyh6c4a22f_0    conda-forge
sniffio                   1.3.0              pyhd8ed1ab_0    conda-forge
soupsieve                 2.5                pyhd8ed1ab_1    conda-forge
stack_data                0.6.2              pyhd8ed1ab_0    conda-forge
statsmodels               0.14.0          py311h59ca53f_2    conda-forge
tangled-up-in-unicode     0.2.0                    pypi_0    pypi
tbb                       2021.10.0            h91493d7_1    conda-forge
terminado                 0.17.0             pyh08f2357_0    conda-forge
threadpoolctl             3.2.0              pyha21a80b_0    conda-forge
tinycss2                  1.2.1              pyhd8ed1ab_0    conda-forge
tk                        8.6.13               hcfcfb64_0    conda-forge
toml                      0.10.2             pyhd8ed1ab_0    conda-forge
tomli                     2.0.1              pyhd8ed1ab_0    conda-forge
tornado                   6.3.3           py311ha68e1ae_1    conda-forge
tqdm                      4.66.1                   pypi_0    pypi
traitlets                 5.11.2             pyhd8ed1ab_0    conda-forge
typeguard                 4.1.5                    pypi_0    pypi
types-python-dateutil     2.8.19.14          pyhd8ed1ab_0    conda-forge
typing-extensions         4.8.0                hd8ed1ab_0    conda-forge
typing_extensions         4.8.0              pyha770c72_0    conda-forge
typing_utils              0.1.0              pyhd8ed1ab_0    conda-forge
tzdata                    2023c                h71feb2d_0    conda-forge
ucrt                      10.0.22621.0         h57928b3_0    conda-forge
uri-template              1.3.0              pyhd8ed1ab_0    conda-forge
urllib3                   2.0.6              pyhd8ed1ab_0    conda-forge
vc                        14.3                h64f974e_17    conda-forge
vc14_runtime              14.36.32532         hdcecf7f_17    conda-forge
visions                   0.7.5                    pypi_0    pypi
vs2015_runtime            14.36.32532         h05e6639_17    conda-forge
wcwidth                   0.2.8              pyhd8ed1ab_0    conda-forge
webcolors                 1.13               pyhd8ed1ab_0    conda-forge
webencodings              0.5.1              pyhd8ed1ab_2    conda-forge
websocket-client          1.6.4              pyhd8ed1ab_0    conda-forge
wheel                     0.41.2             pyhd8ed1ab_0    conda-forge
widgetsnbextension        4.0.9              pyhd8ed1ab_0    conda-forge
win_inet_pton             1.1.0              pyhd8ed1ab_6    conda-forge
winpty                    0.4.3                         4    conda-forge
wordcloud                 1.9.2                    pypi_0    pypi
xorg-libxau               1.0.11               hcd874cb_0    conda-forge
xorg-libxdmcp             1.1.3                hcd874cb_0    conda-forge
xz                        5.2.6                h8d14728_0    conda-forge
yaml                      0.2.5                h8ffe710_2    conda-forge
ydata-profiling           4.6.0                    pypi_0    pypi
zeromq                    4.3.4                h0e60522_1    conda-forge
zipp                      3.17.0             pyhd8ed1ab_0    conda-forge
zstd                      1.5.5                h12be248_0    conda-forge

Installed via this conda/mamba file:

name: howest
dependencies:
  - python=3.11
  - jupyter
  - notebook
  - seaborn
  - scikit-learn
  - matplotlib

  - pandas
  - numpy

  - ydata-profiling
  - ipywidgets

@krassowski
Copy link
Member

Let's continue debugging the Notebook issue in jupyter/notebook#6960.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug tag:Design and UX tag:Regression Behavior that had been broken, was fixed, and is broken again
Projects
None yet
Development

Successfully merging a pull request may close this issue.