Hi list,
I am have the same problem avirl 2012.
This code do not work with pyinstaller (with simple way) unless you
comment import tables.
#####mainwindow.py:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import tables
class MainWindow(QMainWindow) :
def __init__(self, parent = None,):
QMainWindow.__init__(self, parent)
self.mainWidget = QLabel('yep')
self.setCentralWidget(self.mainWidget)
def startMain():
app = QApplication([ ])
w = MainWindow()
w.show()
app.exec_()
if __name__ =='__main__':
startMain()
######
Does someone could help me ?
Thanks a lot for pyinstaller this is really a great great tool!!!
Samuel
On 19 mar, 22:39, Martin Zibricky <[email protected]> wrote:
> Bogdan.Neacsa píše v Po 19. 03. 2012 v 07:19 -0700:
>
> > Now is this some kind of problem that will be fixed? Better has anyone
> > manage to package a project withpytables/cython dependencies and if
> > so, how?
>
> I don't know about any cython project.
> But could you please post any code example to be able to reproduce this
> error?
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.