I have a Python application and I decided to make .exe to execute it.
This is the code I use to use .exe:
from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
options = {'py2exe': {'bundle_files': 1}},
windows = [{'script': "SoundLog.py"}],
zipfile = None,
packages=[r"C:\Users\Public\SoundLog\Code\Código Python\SoundLog\Auxiliar", r"C:\Users\Public\SoundLog\Code\Código Python\SoundLog\Plugins"],
)
But when I run my application with .exe, the graphics are completely different.
In the following figure, you can see the application on which mental python is running on the left and running it .exe on the right.

How can I make .exe as good as the one that runs mental python?
source
share