Thank you Steve for your response. The logging that it refers to is from uvicorn module and doesn't come from my code. So I tried updating all the relevant modules but nothing helped.
Finally, I updated my pip module, followed by pyinstaller module update. This helped and I am able to run the exe successfully. On Wed, Apr 26, 2023, 11:12 Steve Barnes <[email protected]> wrote: > Hi Alisha, > > > > I have seen this problem before and eventually figured out the cause. You > are directly *or indirectly* using either stdout or stderr as an out put > for logger *but* pyinstaller and some or most exe builders produce exes > which, *when running in Windowed mode,* set both of these to None and > logger fails like this because None *as the exception says *doesn’t have > an istty *or any other *methods. > > > > Some possible solutions include: > > - Set the application to be a console application so that it will open > a terminal window (it can still use the GUI but log messages will go to the > terminal *quick but dirty* > - If the application has the frozen attribute or set sys.stdout is > None and no log file is specified then create your logger with the file set > to os.devnull *this will discard all logs* > - Use logging.NullHandler > <https://docs.python.org/3/library/logging.handlers.html#nullhandler> > if frozen or sys.stdout is None. > - Always log to a file but please consider using > logging.RotatingFileHandler > > <https://docs.python.org/3/library/logging.handlers.html#rotatingfilehandler> > as the default handler if frozen or sys.stdout is None. > > > > Hope that this helps. > > > > Steve > > > > *From:* [email protected] <[email protected]> *On > Behalf Of *Alisha Jain > *Sent:* Monday, April 24, 2023 5:14 PM > *To:* PyInstaller <[email protected]> > *Subject:* [PyInstaller] ValueError: Unable to configure formatter > 'default' > > > > Hi, > > > > I creating a python application which uses uvicorn module. The code runs > successfully, however, when I create a exe using pyinstaller, It is able to > create the executable but I see following error when I run the exe file. > Please help. > > > > > -- > You received this message because you are subscribed to the Google Groups > "PyInstaller" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/pyinstaller/4ff86e8c-5ccb-48c4-a608-c5495c92ad35n%40googlegroups.com > <https://groups.google.com/d/msgid/pyinstaller/4ff86e8c-5ccb-48c4-a608-c5495c92ad35n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > -- > You received this message because you are subscribed to a topic in the > Google Groups "PyInstaller" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/pyinstaller/w4EXpztCafE/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/pyinstaller/DU0P194MB18196E90634DD627C520F6D29B659%40DU0P194MB1819.EURP194.PROD.OUTLOOK.COM > <https://groups.google.com/d/msgid/pyinstaller/DU0P194MB18196E90634DD627C520F6D29B659%40DU0P194MB1819.EURP194.PROD.OUTLOOK.COM?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/CA%2BOpBY9TaC10bdgFdJzXByxgGTGE2ECR3n8Hzi3q2xDXAKJ-8w%40mail.gmail.com.
