Python Forum
popup message box code runs in Windows, but not in Linux - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: popup message box code runs in Windows, but not in Linux (/thread-3169.html)

Pages: 1 2


RE: popup message box code runs in Windows, but not in Linux - Larz60+ - May-07-2017

see: https://bugs.python.org/msg230771


RE: popup message box code runs in Windows, but not in Linux - Luke_Drillbrain - May-09-2017

It might be bugginess in my Kubuntu 16.04 system.  Somehow this distro has gotten really buggy lately with applications not working, settings going haywire, needing to reinstall stuff.  It's frustrating because Kubuntu has been great for years, but now I'm considering migrating to Mint.


RE: popup message box code runs in Windows, but not in Linux - wavic - May-10-2017

It's obvious that you broke something in your system. The Kubuntu is Ubuntu system with KDE plasma desktop installed and perhaps some additional features so one can call it distro. If Ubuntu, Lubuntu, Xubuntu, Mint, Ubuntu-MATE work, Kubuntu should work too without glitches.

Try:
sudo apt update
sudo apt install -f
sudo apt upgrade
Restart the system
sudo apt autoremove
sudo apt autoclean
After all of that reinstall Python.
sudo apt install --reinstall python python3
Try to run the script again.


RE: popup message box code runs in Windows, but not in Linux - metulburr - May-10-2017

(May-10-2017, 12:12 AM)wavic Wrote: t's obvious that you broke something in your system. The Kubuntu is Ubuntu system with KDE plasma desktop installed and perhaps some additional features so one can call it distro. If Ubuntu, Lubuntu, Xubuntu, Mint, Ubuntu-MATE work, Kubuntu should work too without glitches.
@Luke_Drillbrain
A lot of people dont know that these are all the same with different desktops. Kubuntu is Ubuntu with the KDE desktop. Which by the way is a very bloated desktop. Install a lightwieght desktop like lxde (which by the way is Lubuntu's desktop). And mint is also Ubuntu tailered to people that switch from windows with ease.

install the desktop
sudo apt-get install lxde
logout and you will see an option to switch desktops from KDE to lxde, login and wala...you are in Lubuntu. Much less bloated too.

Quote:It's frustrating because Kubuntu has been great for years, but now I'm considering migrating to Mint.
One great thing about linux is its free to reinstall. No crap like 3 install limits like windows has. I usually wont allow 1-2 years go by without a fresh install. That could be because i want to try something or start anew...or be because i broke something and its easier to start fresh than diagnose what you did to mess it up. More often the later with Arch Linux that i break something and cant figure out how to fix it.