Dask dashboard - Python 3.14
Since last Python update 3.13 to 3.14, I get the following error when opening up the Dask dashboard on the browser: ```` Dask needs bokeh>=3.1.0 for the dashboard. Install with conda: conda install "bokeh>=3.1.0" Install with pip: pip install "bokeh>=3.1.0" ``` Dask is working fine though. Below are my installed versions: ``` $ pacman -Q python python-bokeh python-dask python-distributed python 3.14.2-2 python-bokeh 3.8.1-1 python-dask 2025.12.0-3 python-distributed 2025.12.0-2 ``` Any ideas on what could the issue be ?
You need to rebuild your AUR packages that depend on python: https://wiki.archlinux.org/title/Python#Module_not_found_after_Python_versio... On Sun, Jan 11, 2026, at 9:13 PM, Stephane Goldstein wrote:
Since last Python update 3.13 to 3.14, I get the following error when opening up the Dask dashboard on the browser:
```` Dask needs bokeh>=3.1.0 for the dashboard. Install with conda: conda install "bokeh>=3.1.0" Install with pip: pip install "bokeh>=3.1.0" ```
Dask is working fine though. Below are my installed versions:
``` $ pacman -Q python python-bokeh python-dask python-distributed python 3.14.2-2 python-bokeh 3.8.1-1 python-dask 2025.12.0-3 python-distributed 2025.12.0-2 ```
Any ideas on what could the issue be ?
You need to rebuild your AUR packages that depend on python: https://wiki.archlinux.org/title/Python#Module_not_found_after_Python_versio... Thanks Ryan, I forgot to add that did that, to no avail, as per my second message.
Yup, I had one package that I needed to rebuild and everything works flawlessly again. Sent from Mailspring (https://link.getmailspring.com/link/2C4A27A9-B403-4FEC-A2C4-4EC000C12412@get...), the best free email app for work On Jan 11 2026, at 11:19 pm, Ryan Petris <ryan@petris.net> wrote:
You need to rebuild your AUR packages that depend on python: https://wiki.archlinux.org/title/Python#Module_not_found_after_Python_versio... (https://link.getmailspring.com/link/2C4A27A9-B403-4FEC-A2C4-4EC000C12412@get...)
On Sun, Jan 11, 2026, at 9:13 PM, Stephane Goldstein wrote:
Since last Python update 3.13 to 3.14, I get the following error when opening up the Dask dashboard on the browser:
```` Dask needs bokeh>=3.1.0 for the dashboard. Install with conda: conda install "bokeh>=3.1.0" Install with pip: pip install "bokeh>=3.1.0" ```
Dask is working fine though. Below are my installed versions:
``` $ pacman -Q python python-bokeh python-dask python-distributed python 3.14.2-2 python-bokeh 3.8.1-1 python-dask 2025.12.0-3 python-distributed 2025.12.0-2 ```
Any ideas on what could the issue be ?
On Sun, Jan 11, 2026, at 9:23 PM, Stephane Goldstein wrote:
I should add that I rebuilt and installed the python-bokeh AUR package following Python update:
``` $ python Python 3.14.2 (main, Jan 2 2026, 14:27:39) [GCC 15.2.1 20251112] on linux Type "help", "copyright", "credits" or "license" for more information.
import dask, bokeh
You could check to see if you have anything else that might still be installed under python 3.13: python -Qo /usr/lib/python3.13 If that's not it, maybe dask is using a virtual environment and that doesn't have bokeh installed? That's all I can think of though. Good luck!
participants (3)
-
frank fendelander
-
Ryan Petris
-
Stephane Goldstein