I'm trying to convert my BVF file into an .exe format, but I keep getting a consistent error in the log and keeping me unable to start the program from the .exe.
Here's the entire error:
Traceback (most recent call last):
File "BVF.py", line 558, in <module>
File "BVF.py", line 37, in __init__
glib.GError: Failed to open file 'BVF.glade': No such file or directory
The traceback is referring to the entire class which is BVF in the code, has supposedly nothing to do with it. The files BVF.glade, BVF.py and setup.py are placed next to eachother in the same map. Here's the setup.py :
from distutils.core import setup
import py2exe
import os
import sys
# Find GTK+ installation path
__import__('gtk')
m = sys.modules['gtk']
gtk_base_path = m.__path__[0]
setup(
name = 'BVF',
description = 'Simple Gui',
version = '1.0',
windows = [
{
'script': 'BVF.py',
'icon_resources': [(1, "bvf.ico")],
}
],
options = {
'py2exe': {
'packages':'encodings',
'includes': 'cairo, pango, pangocairo, atk, gobject, gio, gtk.keysyms',
}
},
data_files=[
'BVF.glade',
'readme.txt',
]
)
I found a similiar error on this site: " https://bugs.launchpad.net/freemix/+bug/813713 " so I thought "maybe I haven't added the correct directory afterall", so I added this line infront of data files: BVF.glade:
C:\Users\nti\Desktop\Py2exe_Glade_TEST\BVF.glade
And the error I got from that was:
C:\Users\nti\Desktop\Py2exe_Glade_TEST\BVF.glade: invalid mode <' U '> or filename
The error above was in the commandprompt and not in the log which the glib.Gerror was in.
I would be very thankfull for any help about what to do..
Lukas, Python programmer for less than a week.