Describe the bug
When I click to open Alpaca's web browser, the sidebar changes to the browser with tab, url box and all, but it then freezes Alpaca, a core-dump is generated, and Alpaca closes. This also happens when the model decides to browse the web.
I also disabled Wayland using Flatseal and tested X11 only, same issue.
On the console, I saw
(process:2): Gtk-WARNING **: 15:31:56.550: Locale not supported by C library.
Using the fallback 'C' locale.
And after setting LC_ALL and LANG to en_US.UTF-8 it finally worked.
Version: Alpaca 9.2.4
System: Bazzite 44.20260608.0 (Kinoite) stable
GPU: AMD Radeon RX 9070 XT (RADV GFX1201)
My default Environment:
$ env | fgrep -e LANG -e LC
LANGUAGE=
LC_MONETARY=pt_BR.UTF-8
LC_PAPER=C
LANG=en_CA.UTF-8
LC_TELEPHONE=pt_BR.UTF-8
Expected behavior
The internal web browser should open up normally without crashing Alpaca no matter the locale.
Screenshots
This is a screenshot of what is shown right after opening the internal web browser, which causes Alpaca do core-dump.

Debugging information
$ flatpak run com.jeffser.Alpaca
(process:2): Gtk-WARNING **: 15:31:56.550: Locale not supported by C library.
Using the fallback 'C' locale.
INFO [main.py | main] Alpaca version: 9.2.4
(Alpaca:2): Adwaita-WARNING **: 15:32:00.365: Using GtkSettings:gtk-application-prefer-dark-theme with libadwaita is unsupported. Please use AdwStyleManager:color-scheme instead.
INFO [ollama_instances.py | start] Starting Alpaca's Ollama instance...
INFO [ollama_instances.py | start] Started Alpaca's Ollama instance
time=2026-07-10T15:32:02.380-03:00 level=INFO source=routes.go:1961 msg="server config" env="map[CUDA_VISIBLE_DEVICES: GGML_VK_VISIBLE_DEVICES: GPU_DEVICE_ORDINAL: HIP_VISIBLE_DEVICES: HSA_OVERRIDE_GFX_VERSION: HTTPS_PROXY: HTTP_PROXY: LLAMA_ARG_FIT: LLAMA_ARG_FIT_TARGET: NO_PROXY: OLLAMA_CONTEXT_LENGTH:0 OLLAMA_DEBUG:INFO OLLAMA_DEBUG_LOG_REQUESTS:false OLLAMA_EDITOR: OLLAMA_FLASH_ATTENTION:false OLLAMA_GO_TEMPLATE:true OLLAMA_GPU_OVERHEAD:0 OLLAMA_HOST:http://0.0.0.0:11435 OLLAMA_IGPU_ENABLE: OLLAMA_KEEP_ALIVE:5m0s OLLAMA_KV_CACHE_TYPE: OLLAMA_LLM_LIBRARY: OLLAMA_LOAD_TIMEOUT:5m0s OLLAMA_MAX_LOADED_MODELS:0 OLLAMA_MAX_QUEUE:512 OLLAMA_MAX_TRANSFER_STREAMS:4 OLLAMA_MODELS:/home/[removed]/.var/app/com.jeffser.Alpaca/data/.ollama/models OLLAMA_NOHISTORY:false OLLAMA_NOPRUNE:false OLLAMA_NO_CLOUD:false OLLAMA_NUM_PARALLEL:1 OLLAMA_ORIGINS:[chrome-extension://* moz-extension://* safari-web-extension://* http://0.0.0.0 http://127.0.0.1 http://localhost https://localhost http://localhost:* https://localhost:* http://127.0.0.1 https://127.0.0.1 http://127.0.0.1:* https://127.0.0.1:* http://0.0.0.0 https://0.0.0.0 http://0.0.0.0:* https://0.0.0.0:* app://* file://* tauri://* vscode-webview://* vscode-file://*] OLLAMA_REMOTES:[ollama.com] OLLAMA_SCHED_SPREAD:false OLLAMA_VULKAN:true ROCR_VISIBLE_DEVICES: http_proxy: https_proxy: no_proxy:]"
time=2026-07-10T15:32:02.380-03:00 level=INFO source=routes.go:1963 msg="Ollama cloud disabled: false"
time=2026-07-10T15:32:02.382-03:00 level=INFO source=images.go:883 msg="total blobs: 24"
INFO [ollama_instances.py | start] Ollama version is 0.30.11
time=2026-07-10T15:32:02.382-03:00 level=INFO source=images.go:890 msg="total unused blobs removed: 0"
time=2026-07-10T15:32:02.383-03:00 level=INFO source=routes.go:2023 msg="Listening on [::]:11435 (version 0.30.11)"
time=2026-07-10T15:32:02.384-03:00 level=INFO source=runner.go:60 msg="discovering available GPUs..."
time=2026-07-10T15:32:02.385-03:00 level=INFO source=model_list_cache.go:111 msg="model list cache hydration complete" models=5 failures=0 elapsed=1.823833ms
time=2026-07-10T15:32:02.624-03:00 level=INFO source=types.go:32 msg="inference compute" id=0 filter_id=0 library=Vulkan compute=0.0 name=Vulkan0 description="AMD Radeon RX 9070 XT (RADV GFX1201)" libdirs=ollama,vulkan driver=0.0 pci_id=0000:0a:00.0 type=discrete total="16.0 GiB" available="11.4 GiB"
time=2026-07-10T15:32:02.624-03:00 level=INFO source=routes.go:2073 msg="vram-based default context" total_vram="16.0 GiB" default_num_ctx=4096
[GIN] 2026/07/10 - 15:32:02 | 200 | 591.958µs | 127.0.0.1 | GET "/api/tags"
INFO [_client.py | _send_single_request] HTTP Request: GET http://0.0.0.0:11435/api/tags "HTTP/1.1 200 OK"
time=2026-07-10T15:32:02.647-03:00 level=INFO source=model_recommendations.go:177 msg="model recommendations cache sleep scheduled" wait=3h45m0.420480001s consecutive_failures=0
INFO [_client.py | _send_single_request] HTTP Request: POST http://0.0.0.0:11435/api/show "HTTP/1.1 200 OK"
[GIN] 2026/07/10 - 15:32:02 | 200 | 366.498766ms | 127.0.0.1 | POST "/api/show"
flatpak-spawn: Invalid byte sequence in conversion input
Try "flatpak-spawn --help" for more information.
** (Alpaca:2): ERROR **: 15:37:56.881: Connection: failed to receive credentials: Expecting to read a single byte for receiving credentials but read zero bytes
And it works after fixing the locale
$ flatpak run --env=LC_ALL=en_US.UTF-8 --env=LANG=en_US.UTF-8 com.jeffser.Alpaca
INFO [main.py | main] Alpaca version: 9.2.4
(Alpaca:2): Adwaita-WARNING **: 15:40:43.622: Using GtkSettings:gtk-application-prefer-dark-theme with libadwaita is unsupported. Please use AdwStyleManager:color-scheme instead.
INFO [ollama_instances.py | start] Starting Alpaca's Ollama instance...
INFO [ollama_instances.py | start] Started Alpaca's Ollama instance
time=2026-07-10T15:40:45.610-03:00 level=INFO source=routes.go:1961 msg="server config" env="map[CUDA_VISIBLE_DEVICES: GGML_VK_VISIBLE_DEVICES: GPU_DEVICE_ORDINAL: HIP_VISIBLE_DEVICES: HSA_OVERRIDE_GFX_VERSION: HTTPS_PROXY: HTTP_PROXY: LLAMA_ARG_FIT: LLAMA_ARG_FIT_TARGET: NO_PROXY: OLLAMA_CONTEXT_LENGTH:0 OLLAMA_DEBUG:INFO OLLAMA_DEBUG_LOG_REQUESTS:false OLLAMA_EDITOR: OLLAMA_FLASH_ATTENTION:false OLLAMA_GO_TEMPLATE:true OLLAMA_GPU_OVERHEAD:0 OLLAMA_HOST:http://0.0.0.0:11435 OLLAMA_IGPU_ENABLE: OLLAMA_KEEP_ALIVE:5m0s OLLAMA_KV_CACHE_TYPE: OLLAMA_LLM_LIBRARY: OLLAMA_LOAD_TIMEOUT:5m0s OLLAMA_MAX_LOADED_MODELS:0 OLLAMA_MAX_QUEUE:512 OLLAMA_MAX_TRANSFER_STREAMS:4 OLLAMA_MODELS:/home/[removed]/.var/app/com.jeffser.Alpaca/data/.ollama/models OLLAMA_NOHISTORY:false OLLAMA_NOPRUNE:false OLLAMA_NO_CLOUD:false OLLAMA_NUM_PARALLEL:1 OLLAMA_ORIGINS:[chrome-extension://* moz-extension://* safari-web-extension://* http://0.0.0.0 http://127.0.0.1 http://localhost https://localhost http://localhost:* https://localhost:* http://127.0.0.1 https://127.0.0.1 http://127.0.0.1:* https://127.0.0.1:* http://0.0.0.0 https://0.0.0.0 http://0.0.0.0:* https://0.0.0.0:* app://* file://* tauri://* vscode-webview://* vscode-file://*] OLLAMA_REMOTES:[ollama.com] OLLAMA_SCHED_SPREAD:false OLLAMA_VULKAN:true ROCR_VISIBLE_DEVICES: http_proxy: https_proxy: no_proxy:]"
time=2026-07-10T15:40:45.610-03:00 level=INFO source=routes.go:1963 msg="Ollama cloud disabled: false"
INFO [ollama_instances.py | start] Ollama version is 0.30.11
time=2026-07-10T15:40:45.612-03:00 level=INFO source=images.go:883 msg="total blobs: 24"
time=2026-07-10T15:40:45.612-03:00 level=INFO source=images.go:890 msg="total unused blobs removed: 0"
time=2026-07-10T15:40:45.613-03:00 level=INFO source=routes.go:2023 msg="Listening on [::]:11435 (version 0.30.11)"
time=2026-07-10T15:40:45.613-03:00 level=INFO source=runner.go:60 msg="discovering available GPUs..."
time=2026-07-10T15:40:45.617-03:00 level=INFO source=model_list_cache.go:111 msg="model list cache hydration complete" models=5 failures=0 elapsed=4.251483ms
time=2026-07-10T15:40:45.891-03:00 level=INFO source=types.go:32 msg="inference compute" id=0 filter_id=0 library=Vulkan compute=0.0 name=Vulkan0 description="AMD Radeon RX 9070 XT (RADV GFX1201)" libdirs=ollama,vulkan driver=0.0 pci_id=0000:0a:00.0 type=discrete total="16.0 GiB" available="11.5 GiB"
time=2026-07-10T15:40:45.891-03:00 level=INFO source=routes.go:2073 msg="vram-based default context" total_vram="16.0 GiB" default_num_ctx=4096
[GIN] 2026/07/10 - 15:40:45 | 200 | 590.79µs | 127.0.0.1 | GET "/api/tags"
INFO [_client.py | _send_single_request] HTTP Request: GET http://0.0.0.0:11435/api/tags "HTTP/1.1 200 OK"
time=2026-07-10T15:40:45.906-03:00 level=INFO source=model_recommendations.go:177 msg="model recommendations cache sleep scheduled" wait=3h24m22.650649322s consecutive_failures=0
[GIN] 2026/07/10 - 15:40:46 | 200 | 352.572662ms | 127.0.0.1 | POST "/api/show"
INFO [_client.py | _send_single_request] HTTP Request: POST http://0.0.0.0:11435/api/show "HTTP/1.1 200 OK"
WARNING: radv is not a conformant Vulkan implementation, testing use only.
WARNING: radv is not a conformant Vulkan implementation, testing use only.
The core-dump from my default locale settings was
Jul 10 15:55:57 bazzite systemd[3324]: Started app-flatpak-com.jeffser.Alpaca-1691326621.scope.
Jul 10 15:55:57 bazzite audit[872871]: ANOM_ABEND auid=1000 uid=1000 gid=1000 ses=3 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 pid=872871 comm="alpaca" exe="/usr/bin/python3.13" sig=6 res=1
Jul 10 15:55:57 bazzite systemd-coredump[873214]: Process 872871 (alpaca) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Jul 10 15:55:57 bazzite /usr/libexec/xdg-desktop-portal[4208]: Realtime error: Could not get pidns for pid 193: PIDFD_GET_PID_NAMESPACE ioctl failed: Inappropriate ioctl for device
Jul 10 15:55:57 bazzite audit: BPF prog-id=464 op=LOAD
Jul 10 15:55:57 bazzite audit: BPF prog-id=465 op=LOAD
Jul 10 15:55:57 bazzite audit: BPF prog-id=466 op=LOAD
Jul 10 15:55:57 bazzite systemd[1]: Started systemd-coredump@17-28735-873214_882342-0.service - Process Core Dump (PID 873214/UID 0).
Jul 10 15:55:57 bazzite audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-coredump@17-28735-873214_882342-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite (sd-parse-elf)[873242]: Could not parse number of program headers from core file: invalid `Elf' handle
Jul 10 15:56:03 bazzite systemd-coredump[873222]: [🡕] Process 872871 (alpaca) of user 1000 dumped core.
Module /app/lib/python3.13/site-packages/scipy.libs/libgfortran-040039e1.so.5.0.0 without build-id.
Module /app/lib/python3.13/site-packages/scipy.libs/libgfortran-040039e1.so.5.0.0
Module /app/lib/python3.13/site-packages/scipy.libs/libscipy_openblas-68440149.so without build-id.
Module /app/lib/python3.13/site-packages/scipy.libs/libscipy_openblas-68440149.so
Module /app/lib/python3.13/site-packages/scipy/linalg/_flapack.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/linalg/_flapack.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/special/_ufuncs.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/special/_ufuncs.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/optimize/_slsqplib.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/optimize/_slsqplib.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/optimize/_lbfgsb.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/optimize/_lbfgsb.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_propack/_zpropack.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_propack/_zpropack.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_propack/_dpropack.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_propack/_dpropack.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_propack/_spropack.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_propack/_spropack.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_eigen/arpack/_arpack.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_eigen/arpack/_arpack.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_dsolve/_superlu.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/sparse/linalg/_dsolve/_superlu.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/linalg/cython_lapack.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/linalg/cython_lapack.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/torch/lib/libtorch_cpu.so without build-id.
Module /app/lib/python3.13/site-packages/torch/lib/libtorch_cpu.so
Module /app/lib/python3.13/site-packages/scipy/optimize/_trlib/_trlib.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/optimize/_trlib/_trlib.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/torch/lib/libgomp-a34b3233.so.1 without build-id.
Module /app/lib/python3.13/site-packages/torch/lib/libgomp-a34b3233.so.1
Module /app/lib/python3.13/site-packages/scipy/special/_ellip_harm_2.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/special/_ellip_harm_2.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libquadmath-96973f99.so.0.0.0 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libquadmath-96973f99.so.0.0.0
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libgfortran-91cc3cb1.so.3.0.0 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libgfortran-91cc3cb1.so.3.0.0
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libcrypto-01067bc0.so.1.1 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libcrypto-01067bc0.so.1.1
Module /app/lib/python3.13/site-packages/scipy/linalg/cython_blas.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/linalg/cython_blas.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libvpx-127417df.so.11.0.0 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libvpx-127417df.so.11.0.0
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libaom-49d00b71.so.3.12.1 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libaom-49d00b71.so.3.12.1
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libopenblas-r0-f650aae0.3.3.so without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libopenblas-r0-f650aae0.3.3.so
Module /app/lib/python3.13/site-packages/scipy/linalg/_matfuncs_expm.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/linalg/_matfuncs_expm.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavutil-734d06dd.so.57.28.100 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavutil-734d06dd.so.57.28.100
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavformat-d296e685.so.59.27.100 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavformat-d296e685.so.59.27.100
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavcodec-e0dd92b8.so.59.37.100 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavcodec-e0dd92b8.so.59.37.100
Module /app/lib/python3.13/site-packages/cv2/cv2.abi3.so without build-id.
Module /app/lib/python3.13/site-packages/cv2/cv2.abi3.so
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libssl-28bef1ac.so.1.1 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libssl-28bef1ac.so.1.1
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libswscale-95ddd674.so.6.7.100 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libswscale-95ddd674.so.6.7.100
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavif-850e7649.so.16.3.0 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libavif-850e7649.so.16.3.0
Module /app/lib/python3.13/site-packages/scipy/linalg/_matfuncs_schur_sqrtm.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/linalg/_matfuncs_schur_sqrtm.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/scipy/linalg/_fblas.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/scipy/linalg/_fblas.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/torch/lib/libshm.so without build-id.
Module /app/lib/python3.13/site-packages/torch/lib/libshm.so
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libpng16-04239421.so.16.48.0 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libpng16-04239421.so.16.48.0
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libswresample-3e7db482.so.4.7.100 without build-id.
Module /app/lib/python3.13/site-packages/opencv_python_headless.libs/libswresample-3e7db482.so.4.7.100
Module /usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-6.0.so.1.7.12 without build-id.
Module /usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-6.0.so.1.7.12
Module /usr/lib/x86_64-linux-gnu/libwebkitgtk-6.0.so.4.16.8 without build-id.
Module /usr/lib/x86_64-linux-gnu/libwebkitgtk-6.0.so.4.16.8
Module /app/lib/python3.13/site-packages/torch/_C.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/numpy.libs/libscipy_openblas64_-ff651d7f.so without build-id.
Module /app/lib/python3.13/site-packages/numpy.libs/libscipy_openblas64_-ff651d7f.so
Module /app/lib/python3.13/site-packages/torch/lib/libtorch_global_deps.so without build-id.
Module /app/lib/python3.13/site-packages/numpy.libs/libquadmath-96973f99-934c22de.so.0.0.0 without build-id.
Module /app/lib/python3.13/site-packages/numpy.libs/libquadmath-96973f99-934c22de.so.0.0.0
Module /app/lib/python3.13/site-packages/numpy.libs/libgfortran-040039e1-0352e75f.so.5.0.0 without build-id.
Module /app/lib/python3.13/site-packages/numpy.libs/libgfortran-040039e1-0352e75f.so.5.0.0
Module /app/lib/python3.13/site-packages/numpy/_core/_multiarray_umath.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/numpy/_core/_multiarray_umath.cpython-313-x86_64-linux-gnu.so
Module /app/lib/python3.13/site-packages/numpy/linalg/_umath_linalg.cpython-313-x86_64-linux-gnu.so without build-id.
Module /app/lib/python3.13/site-packages/numpy/linalg/_umath_linalg.cpython-313-x86_64-linux-gnu.so
Module /usr/lib/x86_64-linux-gnu/libglycin-2.so.0 without build-id.
Module /usr/lib/x86_64-linux-gnu/libglycin-2.so.0
Stack trace of thread 2:
#0 0x00007f5e1569d51c n/a (/usr/lib/x86_64-linux-gnu/libc.so.6 + 0x9c51c)
#1 0x00007f5e156432be n/a (/usr/lib/x86_64-linux-gnu/libc.so.6 + 0x422be)
#2 0x00007f5e1562a8ed n/a (/usr/lib/x86_64-linux-gnu/libc.so.6 + 0x298ed)
#3 0x00007f5e150390ae n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x250ae)
#4 0x00007f5e150831ae n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x6f1ae)
#5 0x00007f5e15083456 n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x6f456)
#6 0x00007f5e150837f3 n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x6f7f3)
#7 0x00007f5dcd916e4b n/a (/usr/lib/x86_64-linux-gnu/libwebkitgtk-6.0.so.4.16.8 + 0xd16e4b)
#8 0x00007f5dcdb6be52 n/a (/usr/lib/x86_64-linux-gnu/libwebkitgtk-6.0.so.4.16.8 + 0xf6be52)
#9 0x00007f5dcc58d453 n/a (/usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-6.0.so.1.7.12 + 0x198d453)
#10 0x00007f5e138b908d n/a (/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.8800.1 + 0xb908d)
#11 0x00007f5e1507652b n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x6252b)
#12 0x00007f5e15079957 n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x65957)
#13 0x00007f5e1507a1b3 n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8800.1 + 0x661b3)
#14 0x00007f5e138feb2d n/a (/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.8800.1 + 0xfeb2d)
#15 0x00007f5e15e39056 n/a (/usr/lib/x86_64-linux-gnu/libffi.so.8.2.0 + 0x9056)
#16 0x00007ffe16fb62f0 n/a (n/a + 0x0)
ELF object binary architecture: AMD x86-64
Jul 10 15:56:03 bazzite systemd[1]: systemd-coredump@17-28735-873214_882342-0.service: Deactivated successfully.
Jul 10 15:56:03 bazzite audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-coredump@17-28735-873214_882342-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jul 10 15:56:03 bazzite systemd[1]: systemd-coredump@17-28735-873214_882342-0.service: Consumed 5.603s CPU time over 5.911s wall clock time, 2.4G memory peak.
Jul 10 15:56:03 bazzite audit: BPF prog-id=466 op=UNLOAD
Jul 10 15:56:03 bazzite audit: BPF prog-id=465 op=UNLOAD
Jul 10 15:56:03 bazzite audit: BPF prog-id=464 op=UNLOAD
Describe the bug
When I click to open Alpaca's web browser, the sidebar changes to the browser with tab, url box and all, but it then freezes Alpaca, a core-dump is generated, and Alpaca closes. This also happens when the model decides to browse the web.
I also disabled Wayland using Flatseal and tested X11 only, same issue.
On the console, I saw
And after setting LC_ALL and LANG to en_US.UTF-8 it finally worked.
Version: Alpaca 9.2.4
System: Bazzite 44.20260608.0 (Kinoite) stable
GPU: AMD Radeon RX 9070 XT (RADV GFX1201)
My default Environment:
Expected behavior
The internal web browser should open up normally without crashing Alpaca no matter the locale.
Screenshots
This is a screenshot of what is shown right after opening the internal web browser, which causes Alpaca do core-dump.

Debugging information
And it works after fixing the locale
The core-dump from my default locale settings was