When running timeseries-queries-and-visualization.ipynb in Colab you get the following error when installing the needed pip packages. ``` python !pip install --upgrade kaleido 'pandas>=2' plotly sqlalchemy-cratedb ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. cudf-cu12 24.4.1 requires pandas<2.2.2dev0,>=2.0, but you have pandas 2.2.2 which is incompatible. google-colab 1.0.0 requires pandas==2.0.3, but you have pandas 2.2.2 which is incompatible. ```` This can be fixed by running: ``` python !pip install --upgrade kaleido 'pandas==2.0.3' plotly sqlalchemy-cratedb ```