Hello,
I have a Python application and I decided to do a .exe to execute it.
This is the code that I use to do the .exe:
# -*- coding: cp1252 -*-
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 the .exe, the graphics are quite different.
In the image bellow you can see the application running thought python at the left and running thought the .exe at the right.
How can I make the .exe one be as good as the one that runs thought python?