You are not logged in.
Hello all!
This is a bit of a two parter, but I believer it all stems from the same graphics faultl. I'm somewhat new to Linux. Just set up a "dual boot" to XFCE ubuntu on my Chromebook.
Sometimes when I switch from Chrome to Linux, mouse turns into a weird blend of pieces of the desktop (broken graphics). Didn't really bother me until a similar bug impacted other things.
Installed Kivy and tried to set up the basic "Hello World" program.
Upon running the program from the terminal, I get either a black screen or a graphical glitch of whatever else is going on, on the desktop.
The terminal also displays a list of debug lines (I'm not used to this in Windows. Assuming this is standard.)
Here's what I'm looking at.
.py file
from kivy.app import App
class WeatherApp(App):
pass
if __name__ == '__main__':
WeatherApp().run()
.kv file
Label:
text: "Hello World!"
Called from terminal with
python main.py
Am I doing something wrong?
Offline
[ Generated in 0.009 seconds, 8 queries executed - Memory usage: 511.25 KiB (Peak: 512.66 KiB) ]