Raspberry Pi 3+ de Python scripti olarak yazılan GUI uygulamasından tarayıcıda link açılmak istendiğinde Webrowser Açma Hatası alınmaktaydı.
Alınan hata kodu raspberry pi de;
/usr/bin/xdg-open http://google.com /usr/bin/xdg-open: 811: : Permission denied
şeklindedir.
Bu hata python un webbrowser library sini yetkisiz açmak sebebiyle alınmaktadır.
[45:0710/213111.584824:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180 296.
Hatanın çözümü ve Python GUI uygulamasının içerisinde web tarayıcı açmak için aşağıdaki kodun eklenmesi gerekmektedir.
import os
os.system("chromium https://mesebilisim.com")
İyi çalışmalar.