Python Forum
PyInstaller Executable Does Nothing
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PyInstaller Executable Does Nothing
#10
Here is my code:
from guizero import App, Box, Text
from datetime import date

def get_jdate():
    today = date.today()
    day = today.strftime("%d")
    month = today.strftime("%m")
    year = today.strftime("%y")
    julianday = today.strftime("%j")
    JDate.value = julianday+year
    print("Got Jdate")
    app.update()

appWidth = 200
appHeight = 100
app = App(title="", width=appWidth, height=appHeight, bg="#AFAFAF")
JLable = Text(app, size=15, text="Julian Date")
JDate = Text(app, size=40)
get_jdate()
app.repeat(900000, get_jdate)

app.display()
What exactly do you mean by the full traceback? :)
Reply


Messages In This Thread
PyInstaller Executable Does Nothing - by pdihawk - Feb-17-2021, 03:48 PM
RE: PyInstaller Executable Does Nothing - by buran - Feb-17-2021, 03:59 PM
RE: PyInstaller Executable Does Nothing - by buran - Feb-17-2021, 06:49 PM
RE: PyInstaller Executable Does Nothing - by pdihawk - Feb-17-2021, 06:58 PM
RE: PyInstaller Executable Does Nothing - by buran - Feb-17-2021, 07:10 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  problem with pyinstaller to create an executable file atlass218 0 2,648 May-15-2021, 11:01 AM
Last Post: atlass218
  Python 3.7, Windows 10, pyinstaller, winsound, no sound in executable kmarien 3 3,794 Nov-30-2020, 04:10 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020